.fade {
    color: #b99e8e;
    opacity: 0.5;
}

/* CENTER ON RUN */
body {
    font-family: Archivo Black, sans-serif;
    display: grid;
    place-items: center;
    height: 100vh;
    margin: 0;
    background-color: #FFFFFF;
}

/* 🔥 MINI CALENDAR */
.calendar {
    background-color: #FFF9F2;
    border-radius: 26px;
    overflow: hidden;
    width: 210px;       /* 👈 perfect for 3rd column */
    color: #895129;
    padding: 10px;
}

/* HEADER */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
}

/* 🔥 MINI MONTH PILL */
.month-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #D9B898;
    border-radius: 999px;
    padding: 0 8px;
    gap: 4px;
    width: 100%;
    max-width: 165px;
    height: 26px;
}

/* 🔥 ARROW BUTTON */
.month-pill .btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    flex-shrink: 0;
}

/* 🔥 WHITE ARROWS */
.month-pill .btn i {
    color: #FFFFFF;
    line-height: 26px;
    font-size: 10px;
}

/* 🔥 MONTH TEXT */
#month-year {
    flex-grow: 1;
    text-align: center;
    white-space: nowrap;
    font-family: 'Archivo Black', Arial, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 11px;
    line-height: 26px;
}

/* GRID */
.weekdays, .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.days {
    height: 150px;
}

/* DAYS */
.weekdays div, .days div {
    color: #895129;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1px auto;
    text-align: center;
    padding: 0;
    border-radius: 50%;
    font-size: 10px;
}

/* TODAY */
.days .today {
    background-color: #D9B898;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
}

.days .fade {
    color: #b99e8e;
}