/* Основные стили */
body {
    background-color: #f8f9fa;
    padding-bottom: 50px;
}

.exhibit-card {
    transition: transform 0.3s;
}

.exhibit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.exhibit-image {
    height: 200px;
    object-fit: contain;
    background-color: #f1f1f1;
    padding: 10px;
}

.carousel-item img {
    max-height: 500px;
    object-fit: contain;
    background-color: #f1f1f1;
}

.badge {
    margin-right: 5px;
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .exhibit-image {
        height: 150px;
    }
    
    .carousel-item img {
        max-height: 300px;
    }
}

/* Стили галереи */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

/* Модальное окно */
.modal-fullscreen .carousel-item {
    max-height: calc(100vh - 120px);
}

.modal-fullscreen .carousel-item img {
    object-fit: contain;
    max-height: calc(100vh - 120px);
    margin: 0 auto;
}

.modal-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}