* {
    font-family: "Inter", sans-serif;
    font-size: 12px;

}

.fontsize-1 {
    font-size: 16px;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    /* padding: 20px; */
    padding-bottom: 0;
}
.progress-step {
    flex: 1;
    min-width: 0;
}
.step-label {
    font-size: 12px;
    margin-bottom: 8px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.progress-bar-wrapper {
    height: 15px;
    background-color: #E9ECEF;
    border-radius: 4px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    transition: width 0.3s ease;
}
.progress-bar.active {
    background-color: #714B67;
    width:100%;
}
.progress-bar.inactive {
    width:0%;

}


/* .calendar-container {
    max-width: 800px;
    margin: 20px auto;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
}

.month-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.month-nav h2 {
    margin: 0;
    color: #4a90e2;
}

.nav-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #4a90e2;
    cursor: pointer;
}

.calendar {
    width: 100%;
    border-collapse: collapse;
}

.calendar th,
.calendar td {
    text-align: center;
    padding: 10px;
}

.calendar th {
    font-weight: normal;
    color: #999;
}

.calendar td {
    cursor: pointer;
}

.calendar td:hover {
    background-color: #f0f0f0;
}

.calendar .today {
    background-color: #4a90e2;
    color: white;
    border-radius: 5%;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.time-slot {
    text-align: center;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
}

.time-slot:hover {
    background-color: #e0e0e0;
}

.time-slot.selected {
    background-color: #2ecc71;
    color: white;
} */



.calendar-container,
.time-slot-container {
    flex: 1;
    padding: 5px;
    margin: 0 10px;
}

h2 {
    margin-bottom: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prevbtn,
.nextbtn {
    padding: 5px 10px;
    background-color: #714B67;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.prevbtn:hover,
.nextbtn:hover {
    background-color: lightgray;
    color: black;
}

/* .prevbtn:active, .nextbtn:active{
    background-color: #5FE8B8;
} */

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.calendar div {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.calendar div:hover {
    background-color: #714B67;
    color: white;
}

.calendar div:active {
    background-color: #714B67;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.weekdays div {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.weekdays div:hover {
    background-color: #714B67;
    color: white;
}

.weekdays div:active {
    background-color: #714B67;
    color: white;
}

.time-slots {
    margin-top: 20px;
}

.slots-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.time-slot {
    padding: 10px;
    background-color: #714B67;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.active,
.time-slot:hover {
    background-color:lightgray;
}


.confirmation {
    margin-top: 20px;
}

.hidden {
    display: none;
}

.custombtn {
    background-color: #714B67;
    color: white !important;

}

.custombtn:hover {
    background-color: #714B67;
    color: white !important;
}


.customfont {
    font-size: 60px;
    font-family: "Julius Sans One", sans-serif;

}

.txt-btn {
    font-size: 18px;
}

.progresscol {
    width: 264px;
    height: 45px;
}   

.available {
    background-color: #28a745; /* Green background */
    color: white; /* White text color */
    cursor: pointer; /* Pointer cursor */
}


.highlight-available {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border-radius: 50%;
}

.calendar .disabled {
    color: #ccc;
    pointer-events: none;
    cursor: not-allowed;
}
.active-date {
    background-color: red;
    color: white;
    font-weight: bold;
    border-radius: 50%;
}
.today {
    background-color: #000000; /* Yellow background for today */
    font-weight: bold;
    color: white;
}