.codevibe-booking-input {
    padding: 10px;
    font-size: 16px;
    width: 300px;
    text-align: center;
    margin-bottom: 20px;
}

.codevibe-modal {
    display: none;
    position: fixed;
    z-index: 99999999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.codevibe-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 640px;
    position: relative;
    border-radius: 10px;
}

#codevibe-codevibe-calendar-controls {
    display: flex;
    justify-content: space-between;
}

#codevibe-prev-month, #codevibe-next-month {
    cursor: pointer;
    padding: 10px 17px;
    background-color: rgb(242, 244, 248);
    color: #fff;
    border: none;
    border-radius: 50%;
    color: currentColor;
}

#codevibe-calendar {
    display: flex;
    gap: 20px;
}

.codevibe-calendar-container {
    width: 100%;
    max-width: 300px;
}

.codevibe-calendar-header, .codevibe-calendar-days {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    color: #171D21;
}

.codevibe-calendar-header div, .codevibe-calendar-days div {
    flex: 1;
    text-align: center;
}

.codevibe-calendar-body {
    display: flex;
    flex-wrap: wrap;
}

.codevibe-calendar-date {
    width: 14.28%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
}

.codevibe-calendar-date.selected {
    background-color: #007bff;
    color: #fff;
}

.codevibe-calendar-date.disabled, .codevibe-calendar-date.past {
    color: #ccc;
    cursor: not-allowed;
}

#codevibe-time-selection {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#codevibe-time-select {
    padding: 5px;
    font-size: 16px;
}

#codevibe-done-button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#codevibe-codevibe-calendar-controls {
    position: absolute;
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
}

#codevibe-time-select {
    color: #171d21;
}

@media (max-width: 700px) {
    #codevibe-calendar {
        flex-direction: column;
    }

    .codevibe-calendar-container:nth-child(2) {
        display: none;
    }

    .codevibe-modal-content {
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
    }
}