#calendar-container {
    margin: 0 auto;
    max-width: 1200px;
    min-width: 900px;
}

#calendar {
    width: 100%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00a09b;
    color: white;
    padding: 10px;
}

.calendar-button {
    background-color: #00a09b;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    outline: none;
}

.calendar-button:hover {
    background-color: #017773;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #00a09b;
    color: white;
    text-align: center;
    padding: 5px 0;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border: 1px solid #ddd;
}

.day {
    border: 1px solid #eee;
    min-height: 100px;
    padding: 5px;
    position: relative;
    overflow: auto;
}

.day .event {
    background-color: #00a09b;
    color: white;
    padding: 2px 5px;
    margin-top: 3px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.day .event:hover {
    overflow: visible;
    white-space: normal;
    background-color: #017773;
    scale: 1.05;
}

/* modal styles */
.modal-content {
    background-color: white;
    padding: 20px;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
    z-index: 1000;
    margin: 0 auto;
    width: 700px;
    min-width: 600px;
    max-width: 900px;
    height: 700px;
    min-height: 600px;
    max-height: 900px;
    box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    overflow: auto;
}

#event-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: none;
}

.close {
    float: right;
    cursor: pointer;
    font-size: 32px;
}

#modal-body {
    margin: auto;
}

.modal-title {
    margin-top: 16px;
    text-align: center;
    font-weight: bold;
    color: #00a09b;
    font-size: 28px;
}

.modal-next-meeting {
    text-align: center;
    color: #00a09b;
    font-size: 24px;
}

.modal-campus {
    text-align: center;
    color: #00a09b;
    font-size: 20px;
}

.modal-hero-img-container {
    width: 100%;
    margin: 16px 0;
}

.modal-hero-image {
    border-width: 0;
    border-style: solid;
    height: auto;
    width: 100%;
    max-width: 100%;
}

.modal-description {
    color: #00a09b;
    margin-bottom: 16px;
    text-align: center;
    font-size: 16px;
}

.modal-register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px
}

.modal-registration-link {
    text-decoration: none;
    width: auto;
    height: 35px;
    background-color: #00a09b;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 12px;
    font-weight: bold;
    margin-bottom: 16px;
}

.modal-registration-link.grayed {
    opacity: 0.3;
    pointer-events: none;
}

/* modal styles */
