/* Progress Steps */
.progress-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 120px;
}

.progress-steps .step.active .step-number {
    background: #667eea;
    color: white;
}

.progress-steps .step .step-number {
    width: 40px;
    height: 40px;
    font-weight: bold;
    font-size: 1rem;
}

.progress-steps .step .step-label {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Form Card */
.form-card {
    border-radius: 10px;
}

/* Sample Headshot */
.sample-headshot {
    background: #f8f9fa;
}

.sample-headshot img {
    max-height: 400px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Photo Upload Area */
.photo-upload-area {
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 200px;
}

.photo-upload-area:hover {
    background-color: #f8f9fa;
}

.photo-preview-container {
    height: 100%;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    color: #6c757d;
    font-size: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upload-instructions {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.uploaded-image {
    width: 100%;
    height: auto;
    object-fit: contain; /* Don't crop, just fit inside */
    border-radius: 8px;
    max-height: 150px;
    background: white; /* Optional: Add background to avoid transparent areas */
}
.error-message {
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .progress-steps {
        flex-direction: row;
        overflow-x: auto;
        padding: 10px 0;
    }

    .progress-steps .step {
        min-width: 100px;
        flex-shrink: 0;
    }

    .form-card {
        padding: 20px;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .photo-upload-area {
        min-height: 150px;
    }

    .photo-preview-container {
        padding: 10px;
    }

    .upload-instructions i {
        font-size: 2rem;
    }

    .uploaded-image {
        max-height: 100px;
    }

    .sample-headshot img {
        max-height: 100px;
    }
}