body {
    background-color: #f8f9fa;
    padding-top: 20px;
}
.step-indicator {
    display: flex;
    margin-top: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 20px;
}
.step-box {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}
.step-title {
    font-size: 0.9rem;
    color: #6c757d;
}
.step-subtitle {
    font-size: 0.8rem;
    color: #adb5bd;
}
.active .step-number {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}
.active .step-title {
    color: #007bff;
    font-weight: bold;
}
.completed .step-number {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}
.completed .step-number::after {
    content: "✓";
}
.step-progress {
    height: 4px;
    width: 100%;
    background-color: #f0f0f0;
    position: relative;
    margin-bottom: 20px;
}
.progress-dots {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: -2px;
}
.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e9ecef;
}
.progress-dot.active {
    background-color: #007bff;
}
.form-section {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.step-content {
    display: none;
}
.step-content.active {
    display: block;
}
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.section-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e8f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #007bff;
}
.section-indicator {
    margin-bottom: 30px;
    padding-left: 0;
}
.section-indicator .step-box {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}
.section-indicator .step-box.active {
    background-color: #f8f9fa;
}
.section-indicator .step-box.completed {
    color: #28a745;
}
.section-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
}
.section-indicator .active .section-number {
    background-color: #007bff;
    color: white;
}
.section-indicator .completed .section-number {
    background-color: #28a745;
    color: white;
}
.btn-nav {
    min-width: 120px;
}
.schedule-row {
    margin-bottom: 15px;
}

/*Confirmation Page*/

.confirmation-card {
    max-width: 700px;
    margin: 0 auto;
}
.success-icon {
    font-size: 5rem;
    color: var(--main-green);
}
.reference-box {
    background-color: var(--grey);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin: 20px 0;
}
.reference-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745;
    letter-spacing: 1px;
}
.next-steps {
    background-color: var(--grey);
    border-radius: 8px;
    padding: 20px;
}

/*Resume Page*/

.resume-card {
    max-width: 600px;
    margin: 0 auto;
}
.card-header {
    background-color: var(--main-blue);
    color: white;
}