/* FullCalendar basic styling */
#event-calendar {
    width: 100%;
    margin: 20px auto;
}

/* Popup modal */
#event-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border: 1px solid #ccc;
    display: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#popup-close {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

#popup-close:hover {
    background-color: #0056b3;
}
