.image-gallery .big-image {
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
}

.image-gallery .big-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: opacity 0.15s ease;
}

.image-gallery .thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 16px;
}

.image-gallery .thumbnails a {
    display: block;
    cursor: pointer;
}

.image-gallery .thumbnails a img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: border-color 0.2s;
}

.image-gallery .thumbnails a:hover img {
    border-color: #6c757d;
}

.image-gallery .thumbnails a.active img,
.image-gallery .thumbnails a:focus img {
    border-color: #0d6efd;
}

.info-label {
    width: 40%;
}

.ops-type-hint {
    font-size: 0.85em;
}

.schedule-text {
    font-size: 0.95em;
    line-height: 1.8;
}
