body {
    background-color: #f4f8fb;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-control:focus,
.form-select:focus {
    border-color: #c0e0ff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.1);
}

/* Style for the step indicator */
.step-indicator {
    display: flex;
    justify-content: start;
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.step {
    display: flex;
    align-items: center;
    margin-right: 30px;
    color: #ccc;
    font-weight: 500;
    cursor: pointer;
    /* Make steps clickable for potential direct navigation (advanced) */
}

@media (max-width: 768px) {
    .step {
        flex-direction: column;
        align-items: start;
    }
}

.step.active {
    color: #333;
    border-bottom: 2px solid #00a896;
    padding-bottom: 5px;
}

.step.completed {
    color: #333;
}

.step-icon {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ccc;
    color: white;
    font-size: 12px;
    border: 1px solid #ccc;
}

.step.completed .step-icon {
    background-color: #00a896;
    border-color: #00a896;
}

.step.active .step-icon {
    background-color: #00a896;
    color: white;
    border-color: #00a896;
}

.step-icon-check {
    content: '✓';
    font-size: 14px;
}

/* Button styles */
.btn-continue {
    background-color: #00a896;
    border-color: #00a896;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
}

.btn-continue:hover {
    background-color: #008f80;
    border-color: #008f80;
}

.btn-cancel {
    background-color: #ccc;
    border-color: #ccc;
    color: #333;
    font-weight: 600;
    padding: 10px 20px;
}

.form-step {
    display: none;
    /* Hide all steps by default */
}

.form-step.active {
    display: block;
    /* Show the active step */
}