


.year-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.day-cell {
    border: 1px solid #ddd;
    padding: 4px;
    min-height: 80px;
    font-size: 0.85rem;
    position: relative;
}

.day-number {
    position: absolute;
    top: 2px;
    right: 4px;
    font-weight: bold;
    color: #555;
}

.event {
    background: #fffae6;
    border-left: 3px solid #f7b500;
    margin-top: 2px;
    padding: 2px 4px;
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
}

.today {
    background-color: #FFC0CB !important;
}

.centerbold {
    text-align: center;
    font-weight: bold;
}

.sticky-header {
    position: sticky;
    top: 60px;
    background: #fff;
    z-index: 1050;
}

.year-cell {
    border: 1px solid #fff;
    padding: 4px;
    min-height: 80px;
    font-size: 1.5rem;
    position: relative;
}
