/* 
 * FUE Salary Survey Form Styles
 * Custom styles for the form section
 */

/* Form styling */
.form-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.form-title {
    color: #292560;
    margin-bottom: 20px;
    border-bottom: 2px solid #292560;
    padding-bottom: 10px;
}

.form-section {
    margin-bottom: 30px;
}

.form-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #292560;
    margin-bottom: 15px;
}

/* Custom button styles */
.btn-primary {
    background-color: #292560;
    border-color: #292560;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

/* Survey steps navigation */
.survey-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 10px;
    position: relative;
}

.step-item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #dee2e6;
    z-index: 1;
}

.step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #dee2e6;
    color: #6c757d;
    font-weight: bold;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 0.9rem;
    color: #6c757d;
}

.step-active .step-number {
    background-color: #292560;
    color: white;
}

.step-active .step-title {
    color: #292560;
    font-weight: bold;
}

.step-completed .step-number {
    background-color: #28a745;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-title {
        display: none;
    }
    
    .survey-steps {
        margin-bottom: 20px;
    }
}
