.calendar {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.active_events {
    display: grid;
    align-items: flex-end;
    height: 120px;
    overflow-y: auto;
}

.calendar-event {
    margin-top: 3px;
    padding: 3px;
    border-radius: 5px;
    font-size: 0.8em;
}

.calendar-event-active {
    background-color: #d1e7dd;
    color: #0f5132;
    border-left: 4px solid #0f5132;
}

.calendar-event-session {
    background-color: #e7e9fc;
    color: #3838a1;
    border-left: 4px solid #3838a1;
}

.calendar-event-appointments {
    background-color: #f8d7da;
    color: #842029;
    border-left: 4px solid #842029;
}

.calendar-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    gap: 20px;
}

.year-btn {
    text-transform: none !important;
    background: #083FB2 !important;
    color: white !important;
    padding: 8px 16px !important;
}

.calendar-header {
    display: flex;
    font-size: 0.8em;
    border-bottom: 2px solid #f4f4f4;
}

.calendar-header-day {
    flex: 1;
    padding: 8px;
    text-align: center;
    font-weight: bold;
    border-right: 1px solid #ddd;
}

.calendar-header-day:last-child {
    border-right: none;
}

.calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(6, 1fr);
}

.calendar-day {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 8px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: space-between;
    /* display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end; */
}

.calendar-day:nth-child(7n) {
    border-right: none;
}

.calendar-day:last-child:nth-child(7n + 1) {
    border-right: none;
}

.calendar-date {
    font-weight: bold;
    margin-bottom: 3px;
}

.calendar-event {
    margin-top: 3px;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.8em;
}

.calendar-event-event {
    background-color: #d1e7dd;
    color: #0f5132;
    border-left: 4px solid #0f5132;
}

.calendar-event-session {
    background-color: #e7e9fc;
    color: #3838a1;
    border-left: 4px solid #3838a1;
}

.calendar-event-appointments {
    background-color: #f8d7da;
    color: #842029;
    border-left: 4px solid #842029;
}

.event-title {
    font-weight: bold;
}

.event-locations,
.event-times {
    font-size: 0.7em;
    color: #067647;
}

.mentor-req {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

span.list-1-sur {
    font-size: 20px;
    font-weight: bold;
}

.list-ran-sur {
    color: #555;
}

.items {
    background: #d3d3d336;
    border-radius: 10px;
    padding: 10px;
}

.dec {
    text-transform: none !important;
    border: 1px solid #f90404 !important;
    color: red !important;
    padding: 10px 20px !important;
}

.loc,
.clo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.acc {
    text-transform: none !important;
    border: none !important;
    background: #0ca72e !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}