@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --white: #fff;
    --main: #eaedf0;
    --accent: #0041ff;
    --accent-2: #ebedf0;
}


.container-calendar {
    background-color: var(--white);
    border-radius: 0;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.header-calendar {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-calendar-display p {
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

pre {
    cursor: pointer;
    color: #000;
    display: flex;
}

.week, .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15.6px;
    text-align: center;
}

.week div,
.days div {
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    font-weight: 400;
}

.week div {
    font-weight: bold;
}

.days div {
    width: 100%;
    height: 52px;
    line-height: 3.5rem;
    border-radius: 13px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.days div:hover {
    background-color: var(--accent-2);
    color: var(--accent);
}

.current-date {
    background-color: #BC2026;
    color: #ffffff !important;
}

.display-selected {
    text-align: center;
    font-size: 1rem;
    color: #000;
    margin-top: 10px;
}

@media (max-width:991px){
    .header-calendar-display p {
        font-size: 18px;
        line-height: 21.8px;
    }
    .week div, .days div {
        font-size: 14px;
        line-height: 20.8px;
        font-weight: 400;
    }
}