.id-photo-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff3cd;
    color: #b45309;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.id-photo-indicator:hover {
    background: #ffe69c;
    color: #92400e;
}

.id-photo-gallery-thumb {
    flex: 0 0 auto;
    line-height: 0;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.id-photo-gallery-thumb img {
    height: 220px;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    background: #fff;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.id-photo-gallery-thumb:hover img {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.id-photo-modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    background: #f8f9fa;
}

.id-photo-modal-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.id-photo-modal-counter {
    font-size: 0.85rem;
    color: #6c757d;
    min-width: 48px;
    text-align: center;
}

@media (max-width: 768px) {
    .id-photo-gallery-thumb img {
        height: 160px;
    }

    .id-photo-modal-image {
        max-height: 60vh;
    }
}
