/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Progress Bar */
.progress {
    background-color: #e9ecef;
}

.progress-bar {
    background-color: #0d6efd;
    transition: width 0.3s ease;
}

/* Service Lines */
.service-line {
    border-left: 4px solid #0d6efd;
    background-color: #f8f9fa;
}

.service-line:hover {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.remove-service-line {
    align-self: flex-end;
}

/* Form Controls */
.form-control:focus,
.form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Buttons */
#nextBtn, #prevBtn {
    min-width: 150px;
}

#nextBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Financial Summary */
#totalCharges,
#balanceDue {
    font-weight: bold;
}

.claims-form h2 {
    color: #333;
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 0.5rem;
}

.claims-form h5 {
    color: #495057;
    margin-top: 1.5rem;
}

/* Alert styling */
.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Responsive */
@media (max-width: 768px) {
    .form-step {
        padding: 0;
    }

    .service-line {
        padding: 1.5rem 1rem !important;
    }
}
