.calendar-container {
    width: 100%;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
}

.calendar-container .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ff6a00;
    font-weight: bold;
    margin-bottom: 1rem;
}

.calendar-container .calendar-search {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}


.calendar-container .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0px;
    border-radius: 10px;
    background: #FFF;

    /* Shadow */
    box-shadow: 150px 534px 155px 0 rgba(171, 171, 171, 0.00), 96px 342px 142px 0 rgba(171, 171, 171, 0.01), 54px 192px 120px 0 rgba(171, 171, 171, 0.05), 24px 85px 89px 0 rgba(171, 171, 171, 0.09), 6px 21px 49px 0 rgba(171, 171, 171, 0.10);
}

.calendar-container .day-name {
    background: #f8f9fa;
    color: var(--Blue-Normal, #0098F3);
    text-align: center;

    /* Headline / Bold */
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    /* 150% */
    padding: 5px 5px;
    border: 1px solid var(--Blue-Dark, #0072B6);
    width: 100%;
    min-width: 90px;
}
.calendar-container.fs-sm .day-name {
    font-size: 14px;
    padding: 2px 2px;
     min-width: 80px;
}
.calendar-container .day-name:first-child {
    border-radius: 10px 0 0 0;
}

.calendar-container .day-name:nth-child(7) {
    border-radius: 0 10px 0 0 !important;
}

.calendar-container .day-cell {
    background: white;
    min-height: 100px;
    padding: 5px;
    border: 1px solid var(--Blue-Dark, #0072B6);
    position: relative;
    cursor: pointer;
}

.calendar-container .day-cell:hover {
    background-color: #D9F0FD;
}

.calendar-container .day-cell:nth-last-child(7) {
    border-radius: 0 0 0 10px !important;
}

.calendar-container .day-cell:last-child {
    border-radius: 0 0 10px 0 !important;
}

.calendar-container .day-cell.today {
    background: var(--green-light-hover, #DEF6E7);
}

.calendar-container .date {
    color: var(--Grey-Darker, #444);
    text-align: center;
    /* Body / Bold */
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 150% */
}

.calendar-container .not-current-month .date {
    color: var(--grey-normal-hover, #AEAEAE);
    font-weight: 400;
}

.calendar-container .event {
    border-radius: 5px;
    background: var(--green-light-hover, #DEF6E7);
    margin-top: 3px;
    padding: 5px;
    color: var(--Green-Normal, #22C55E);
    text-align: center;
    /* Subtitle / Regular */
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 15.6px;
    /* 120% */
    cursor: pointer;
}

.calendar-container .day-cell.today .event {
    background-color: #22C55E;
    color: #fff;
}

.calendar-container .event:hover {
    background-color: #8ee4ac;
}

.calendar-container .cardEvent {
    border-radius: 10px;
    background: #FFF;
    /* Shadow blue */
    box-shadow: 10px 8px 20px 0 rgba(0, 81, 131, 0.25);
    height: fit-content;
}

.calendar-container .cardEvent .card-header h4 {
    color: var(--Orange-Normal, #F60);
    text-align: start;
    /* Body / Bold */
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 150% */
}

.calendar-container .cardEvent .card-header img {
    width: 50px;
    height: 50px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    background: lightgray 50% / cover no-repeat;
    box-shadow: 5px 4px 10px 0 rgba(0, 81, 131, 0.25);
}

.calendar-container .cardEvent .card-header h5 {
    color: var(--Grey-Darker, #444);
    /* Body / Bold */
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 150% */
}

.calendar-container .cardEvent .card-header p {
    /* Subtitle / Bold */
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 15.6px;
    /* 120% */

}

.calendar-container .cardEvent .card-body p {
    color: var(--grey-dark-active, #575757);
    /* Subtitle / Regular */
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 15.6px;
    /* 120% */
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 2px;
}

@media(max-width:1024px) {
    .calendar-container .cardEvent {
        width: 100%;
    }

    .calendar-container .calendar-body {
        flex-wrap: wrap;
    }
}

@media(max-width:992px) {
    .calendar-container .date {
        font-size: 14px;
    }

    .calendar-container .event {
        font-size: 12px;
    }

    .calendar-container .day-name {
        font-size: 15px;
    }

    .calendar-container .day-cell {
        min-height: 90px;
    }
}

@media(max-width:768px) {
    .calendar-container .date {
        font-size: 12px;
    }

    .calendar-container .event {
        font-size: 11px;
    }

    .calendar-container .day-name {
        font-size: 14px;
    }

    .calendar-container .day-cell {
        min-height: 80px;
    }
}