/* Report Card Photo Grid Styles */
.report-card__photo-grid {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 195, 74, 0.5) rgba(255, 255, 255, 0.1);
}

.report-card__photo-grid::-webkit-scrollbar {
    height: 4px;
}

.report-card__photo-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.report-card__photo-grid::-webkit-scrollbar-thumb {
    background: rgba(139, 195, 74, 0.5);
    border-radius: 2px;
}

.report-card__photo-item {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.report-card__photo-item:hover {
    transform: scale(1.05);
    border-color: rgba(139, 195, 74, 0.5);
}

/* Mobile: Smaller photos */
@media (max-width: 768px) {
    .report-card__photo-item {
        width: 100px;
        height: 100px;
    }
}