
#monthPicker {
        position: absolute;
        top: 140px;
        left: 50%;
        transform: translateX(-50%);
        display: none;
        background: white;
        padding: 15px;
        border-radius: 10px;
        width: 260px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        z-index: 1000;
}

/* DECEMBER 2025 */
#monthYear {
        font-size: 18px;
        font-family: "Cause", cursive;
        text-decoration-thickness: 0.1px;
        text-underline-offset: 4px;
        cursor: pointer;
        border:hsl(0, 0%, 90%) 0.3px solid;
        border-radius: 20px;
        background: hsl(0, 0%, 100%);
        padding: 10px 1px;
        max-width: 150px;
        text-align: center;
        display: block;
        margin: auto;
        margin-top: 10px;
      
    }

 #monthYear:hover  {
        color:#5a0033
  
    }

/* CALENDAR GRID */
#calendar {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 10px;
        max-width: 800px;
        margin: 20px auto;
    }

.day {
        background: white;
        border-radius: 20px;
        padding: 10px;
        min-height: 80px;
        cursor: pointer;
        position: relative;
        border: none;
        transition: 0.2s;
    }

.day:hover {
        background: #ffe0f9;
        transform: scale(1.03);
    }

.entry-dot {
        width: 8px;
        height: 8px;
        background: #ff9bbc;
        border-radius: 50%;
        position: absolute;
        bottom: 10px;
        right: 10px;
    }

/* MONTH PICKER - CLICK DECEMBER 2025  */
.month-picker-box {
        display: none;
        position: absolute;
        top: 150px;
        left: 50%;
        transform: translateX(-50%);
        background: rgb(255, 255, 255);
        padding: 15px;
        border-radius: 10px;
        width: 260px;
        box-shadow: 0 4px 15px rgba(253, 253, 253, 0.2);
        z-index: 20;
    }

.year-row button {
        background: none;
        border: none;
        font-size: 18px;
        cursor: pointer;
        color: rgb(187, 85, 102);
        padding: 0;
        margin: 0;
        line-height: 1;
    }
.year-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
        margin-bottom: 20px;
    }

.month-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

/* MONTH PICKER - MONTHS INSIDE */

.month-grid div {
        padding: 8px;
        background: #ffe4e4;
        border-radius: 25px;
        cursor: pointer;
        transition: 0.2s;
        font-size: 15px;
        color:hsl(0, 0%, 22%);
    }

.month-grid div:hover {
        background: #ffccd7;
    }

.modal-content {
        background: white;
        padding: 24px;
        border-radius: 16px;
        width: 420px;
        max-width: 90%;
        text-align: left;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.modal-content h3 {
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 18px;
}
