/* Bendri korteliu stiliai */
.card {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
}

.card:hover {
    transform: scale(1.05);
}

.card-img-top {
    height: 300px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Apraymo modalas */
.modal-content {
    border-radius: 10px;
    background-color: #fff;
    color: #333;
}

/* Tamsi tema */
body.dark-theme {
    background-color: #333;
    color: white;
}

body.dark-theme .card {
    background-color: #444;
    border: 1px solid #666;
    color: white;
}

body.dark-theme .modal-content {
    background-color: #444;
    color: white;
}