.event-popup {
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    width: 170px;
    z-index: 10000;
    padding: 10px;
    border-radius: 5px;
    color: black;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

    .popup-header h5 {
        margin: 0;
        font-size: 16px;
    }

#closeCalendarEventPopup {
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

#closeOtherCalendarEventPopup {
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.popup-body p {
    margin: 5px 0;
    font-size: 14px;
}

.popup-footer {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    margin-top: 10px;
}

.popup-body {
    overflow: hidden;
    max-height: 200px;
}

.fc-day-sun {
    background-color: rgba(80, 180, 255, 0.15);
}

.fc-day-sat {
    background-color: rgba(80, 180, 255, 0.15);
}

.fc-dayGridMonth-button {
    display: none !important;
}

.fc-event {
    cursor: pointer;
  }
  
  .fc-event .fc-event-title {
    cursor: pointer;
  }