.image-search-results {
    width: 100%;
    max-width: 800px;
}

.image-verification {
    margin-bottom: 20px;
    text-align: center;
}

.image-verification h2{
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.verification-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.image-item {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid transparent;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    background: white;
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.image-item.selected {
    border-color: var(--accent-color);
}

.image-container {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.image-item img,
.image-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    transition: background 0.3s ease;
}

.image-item:hover .video-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.play-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    font-size: 24px;
    padding-left: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.image-item:hover .play-icon {
    transform: scale(1.1);
}

.image-info {
    padding: 12px;
    background: white;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.image-details {
    flex: 1;
}

.image-location {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.image-date {
    font-size: 0.75rem;
    opacity: 0.7;
    color: var(--text-light);
}

.image-icons {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.image-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    overflow: hidden;
}

.image-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
}
