/* Step indicator styles */
.stepwizard {
    display: flex;
    justify-content: space-between;
    /* margin-bottom: 30px; */
}

.stepwizard-step {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.stepwizard-step button {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    background-color: #fbbf24; /* Amber color */
    color: white;
    border: none;
    cursor: pointer;
}

.stepwizard-step button[disabled] {
    background-color: #ccc;
}

.stepwizard-step p {
    margin-top: 5px;
    font-weight: bold;
    color: #fbbf24; /* Amber color */
}

.stepwizard-step p[disabled] {
    color: #ccc;
}

/* Form styles */
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.card-header {
    background-color: #fbbf24; /* Amber color */
    color: white;
    padding: 15px;
    font-size: 18px;
}

.card-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"], input[type="email"], select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

input[type="checkbox"] {
    margin-right: 10px;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-success {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #fbbf24; /* Amber color */
}

.btn-primary:hover {
    background-color: #fbbf24; /* Darker Amber */
}

.btn-secondary {
    background-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

@media (max-width: 768px) {
    .stepwizard-step {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .stepwizard-step p {
        font-size: 10px;
        font-weight: bold;
    }
}