
.calendar-root {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #e6e6e6;
}
.calendar-grid {
    display: grid;
    grid-template-rows: auto 1fr 1fr 1fr 1fr 1fr 1fr; 
    
    gap: 4px;
    width: 100%;
}
.calendar-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.calendar-row.header {
    font-weight: 600;
    color: #bdbdbd;
    
    font-size: 10px;
}
.calendar-cell {
    
    min-height: 40px;
    padding: 4px 6px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: #e6e6e6;
}
.calendar-cell.calendar-header {
    align-items: center;
    justify-content: center;
}
.calendar-cell.today {
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    font-weight: 700;
}

.calendar-toolbar {
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.calendar-prev, .calendar-next {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.04);
    color: #e6e6e6;
    
    padding: 4px 7px;
    border-radius: 6px;
    cursor: pointer;
}
.calendar-prev:hover, .calendar-next:hover {
    background: rgba(255,255,255,0.03);
}

