/* .container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    color: white;
    display: flex;
    border-radius: 10px;
} */

.left {
    width: 100%;
    height: 600px;
    display: flex;
}

.calendar {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    color: #878895;
    border-radius: 5px;
    background-color: #fff;
}

.calendar .month {
    width: 100%;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: capitalize;
}

.calendar .month .prev, 
.calendar .month .next {
    cursor: pointer;
}

.calendar .month .prev:hover,
.calendar .month .next:hover {
    color: rgb(0, 55, 138);
}

.calendar .weekdays {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
}

.calendar .weekdays div {
    width: 14.28%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar .days {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.calendar .days .day {
    width: 14.28%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgb(22, 49, 49);
    border: 1px solid #f5f5f5;
}

.calendar .day:not(.prev-date, .next-date):hover {
    color: #fff;
    background-color: darkorchid;
}

.calendar .days .prev-date,
.calendar .days .next-date {
    color: #b3b3b3;
}

.calendar .days .active {
    position: relative;
    font-size: 2rem;
    color: #fff;
    background-color: violet;
}

.calendar .days .active::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   box-shadow:  0 0 10px 2px violet;
}

.calendar .days .today {
    font-size: 2rem
}

.calendar .days .event {
    position: relative;
}

.calendar .days .old-event {
    position: relative;
}

.calendar .days .event::after {
    content: "";
    position: absolute;
    bottom: 10%;
    left: 50%;
    width: 75%;
    height: 6px;
    border-radius: 30px;
    transform: translateX(-50%);
    background-color: rgb(207, 28, 163);
}

.calendar .days .old-event::after {
    content: "";
    position: absolute;
    bottom: 10%;
    left: 50%;
    width: 75%;
    height: 6px;
    border-radius: 30px;
    transform: translateX(-50%);
    background-color: rgb(58, 53, 57);
}

.calendar .event:hover::after {
    background-color: #fff;
}

.calendar .active .event::after {
    background-color: #fff;
    bottom: 20%;
}

.calendar .active .event {
    padding-bottom: 10px;
}

.calendar .goto-today {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    padding: 0 20px;
    margin-bottom: 20px;
    color: violet;
}

.calendar .goto-today .goto {
    display: flex;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid violet;
}

.calendar .goto-today .goto input {
    width: 100%;
    height: 30px;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 20px;
    color: violet;
    border-radius: 5px;
}
.calendar .goto-today button {
    padding: 5px 10px;
    border: 1px solid violet;
    border-radius: 5px;
    background-color: transparent;
    cursor: pointer;
    color: violet;
}

.calendar .goto-today button:hover {
    color: #fff;
    background-color: violet;
}

.calendar .goto-today .goto button{
    border: none;
    border-left: 1px solid violet;
    border-radius: 0;
}

/*right bar*/

.container .right {
    position: relative;
    width: 40%;
    min-height: 100%;
    padding: 20px 0;
}

.right .today-date {
    width: 100%;
    height: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    padding-left: 70px;
    margin-top: 50px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.today-date .event-day {
    font-size: 2rem;
    font-weight: 500;
}

.today-date .event-date {
    font-size: 1rem;
    font-weight: 400;
    color: #878895;
}


.calendar .action-btn {
    width: 100%;
    justify-content: right;
    padding-right: 20px;
}

.booking-working-hour {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

#calendar-container {
    
}

.schedule-list {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    height: 100px; 
    gap: 10px;
}

.schedule-list-left {
    display: flex;
    justify-content: flex-end; 
    width: 100px; 
    height: 100%; 
    font-weight: bold;
    padding-right: 10px;
}

.schedule-list-right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1; 
    border: 1px solid #ccc;
    height: 100%;
}

.schedule-list.pending .schedule-list-right {
    background-color: #f7c8c8; 
}

.schedule-list.success .schedule-list-right {
    background-color: #d4edda; 
}

.schedule-list.failure .schedule-list-right {
    background-color: #f8d7da; 
}

.schedule-list.doing .schedule-list-right {
    background-color: #fff3cd;
}

.schedule-list .state {
    font-size: 14px; 
    color: #333; }

.schedule-list-right:hover {
    background-color: #f1f1f1;
}

@media (max-width: 768px) {
    aller screens */
    .schedule-list {
        flex-direction: column; 
        height: auto; 
    }

    .schedule-list-left {
        width: 100%;
        justify-content: flex-start; 
        padding: 5px 10px;    
    }

    .schedule-list-right {
        width: 100%; 
        padding: 10px 0;    
    }
}

.weekCalendar_weekdays {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.weekCalendar_weekdays div {
    width: 14.28%;
    align-self: center;
    color: black;
    text-align: center;
}

.event_weekDays {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.event_weekDays div {
    width: 14.28%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    border: 1px solid black;
}

.event_weekDays div:hover {
    cursor: pointer;
}

.event_weekDays .day .selected {
    
}