body{
    overflow-x: hidden;
}

.calendar-container {
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.calendar-title {
    color: #fff;
    font-size: 180%;
}

.calendar-grid {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1rem;
    justify-content: center;
}

.calendar-header {
    color: #e2b86f;
    text-align: center;
    font-size: 90%;
}

.calendar-day {
    background: #1f1f1f;
    border-radius: 10%;
    height: 8vh;
    min-height: 5rem;
    position: relative;
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6%;
    cursor: pointer;
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

.calendar-day span {
    font-size: 90%;
}

.event-dot {
    width: 24%;
    height: 24%;
    background: #4fc3ff;
    border-radius: 50%;
    position: absolute;
    bottom: 10%;
    right: 10%;
    box-shadow: 0 0 10px rgba(245, 199, 106, 0.8);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.7);

    align-items: center;
    justify-content: center;

    z-index: 9999;
}

.modal-content {
    width: 90%;
    max-width: 600px;
    max-height: 80vh;

    background: #ffffff;
    color: #000000;

    padding: 2rem;
    border-radius: 1rem;

    overflow-y: auto;
    position: relative;
}

.modal-content p {
    margin-bottom: 0.75rem;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;

    cursor: pointer;
    font-size: 1.5rem;
}
