/* Custom styles for step indicator */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.step {
    flex: 1;
    text-align: center;
    padding: 10px;
    background-color: #e9ecef; /* Default background color */
    border-radius: 5px;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.step.active {
    background-color: #0d6efd; /* Active step background color */
    color: white; /* Active step text color */
}

/* Fixed height for modal body */
.modal-body {
    height: 300px; /* Fixed height */
    overflow-y: auto; /* Add scrollbar if content overflows */
}

/* Time slot selection styling */
.time-slot-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Space between time slots */
}
.radio-group {
    width: 100%; /* Full width for radio group */
}
.radio-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd; /* Default border */
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    width: 100%; /* Full width for radio items */
}
.radio-item:hover {
    background-color: #f8f9fa; /* Hover background color */
}
.radio-item input[type="radio"] {
    margin-right: 10px; /* Space between radio button and text */
}

/* Validation error styling */
.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

/* Add red border for invalid fields */
.is-invalid {
    border-color: red !important; /* Red border for invalid fields */
}