#yearly-calendar-container {
    display: grid;
    /*grid-template-columns: repeat(4, 1fr);*/
    gap: 16px;
    max-width: 1200px;
    margin: auto;
}
.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}

.calendar-nav button {
    width: 28px;
    height: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 28px;
    font-size: 20px;
    border: 0;
}
.calendar-nav button svg {
    width: 12px;
}
.month-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1);
}
.month-box h6 {
    text-align: center;
    margin: 10px 0;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
}
.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.day {
    border: 1px solid #ddd;
    min-height: 40px;
    padding: 5px;
    position: relative;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    border-radius: 50%;
}
.day.empty {
    background: #fbfbfb;
    border-color: #fbfbfb;
}
.event-marker {
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    cursor:pointer;
}
.day.pickup_date { border-color: #2575fc; background: rgba(37, 117, 252, 0.05); color: #2575fc;}
.day.shipping_date { border-color: #00c807; background: rgba(0, 200, 7, 0.05); color: #00c807; }
.day.delivery_deadline { border-color: #ea5356; background: rgba(234, 83, 86, 0.05); color: #ea5356;}

.weekday-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 12px;
}
.weekday {
    padding: 4px;
    color: #555;
}

.custom-tooltip {
    position: absolute;
    z-index: 9999;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    padding: 10px;
    font-size: 13px;
    max-width: 250px;
    pointer-events: none;
    border-radius: 8px;
    display: none;
}
