/* Workout Screenshots in Auth Modal Styles */

.workout-screenshots-preview {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.workout-screenshots-preview h3 {
    color: #1e293b;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.workout-screenshots-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.workout-screenshot-item {
    text-align: center;
    flex: 1;
    max-width: 120px;
}

.workout-screenshot-item img {
    width: 96px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin: 0 auto 0.5rem;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.workout-screenshot-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.workout-screenshot-item p {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

.workout-screenshots-preview .description {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .workout-screenshots-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .workout-screenshot-item {
        max-width: 100px;
    }
    
    .workout-screenshot-item img {
        width: 80px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .workout-screenshots-preview {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border-color: #475569;
    }
    
    .workout-screenshots-preview h3 {
        color: #f1f5f9;
    }
    
    .workout-screenshot-item p,
    .workout-screenshots-preview .description {
        color: #cbd5e1;
    }
}
