

.calendar {
    max-width: 350px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-size: 14px;
}

.month-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #eee;
    color: #333;
}

.month-indicator h2 {
    margin: 0;
    font-size: 16px;
}

.week-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
    padding: 5px 0;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.date-cell {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.date-cell.selected {
    background-color: #980875;
    color: white;
    border-radius: 50%;
}

.time-slots {
    padding: 15px;
    background-color: #fff;
}

.timezone {
    /* display: flex; */
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.timezone span {
    color: #333;
}

.slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px 0;
    height: 100px;
    overflow: auto;
    white-space: nowrap;
}

.time-slot {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    color: #333;
    cursor: pointer;
}

.time-slot:hover {
    background-color: #980875;
}

.continue-booking {
    display: block;
    width: 100%;
    padding: 15px 0;
    background-color: #d1005d;
    color: white;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0 0 8px 8px;
}

.continue-booking:hover {
    background-color: #b80053;
}

.carousel-container {
    overflow-x: auto;
    white-space: nowrap;
    max-width: 100%;
}

.dates-carousel {
    display: inline-block;
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.date-cell {
    display: inline-block;
    width: 30px;
    /* Adjust the width as needed */
    text-align: center;
    margin: 5px;
    /* Adjust the margin as needed */
    cursor: pointer;
}

.day-name {
    font-size: 12px;
    margin-top: 2px;
}

.selected {
    background-color: #980875;
    color: #fff;
}

.time-slot {
    margin: 5px;
    cursor: pointer;
    padding: 5px;
    border: 1px solid #ccc;
    display: inline-block;
}

.appointment-box {
    display: none;
    margin: 5px;
    padding: 10px;
    border: 1px solid #ccc;
}

.date-cell.disabled {
    color: #999;
    /* Adjust the color for disabled dates */
    cursor: not-allowed;
}

.time-slot.selected {
    background-color: #980875;
    /* Adjust the background color for the selected time slot */
    color: #fff;
    /* Adjust the text color for the selected time slot */
}