header .calendar-container {
    width: 100%;
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 12px;
}

header .calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

header .calendar-title {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: #515565;
}

header .calendar-controls {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

header .calendar-btn {
    cursor: pointer;
}

header .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
}

header .calendar-day-header {
    font-size: 10px;
    line-height: 12px;
    font-weight: 500;
    color: #ADB2C8;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    user-select: none;
}

header .calendar-day {
    font-size: 10px;
    line-height: 12px;
    font-weight: 500;
    color: #515565;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    user-select: none;
}

header .calendar-day.other-month {
    color: #ccc;
    cursor: default;
}

header .calendar-day.other-month:hover {
    background-color: transparent;
    color: #ccc;
}

header .calendar-day.today {
    background-color: #515565;
    color: white;
}

header .calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

header .calendar-day.disabled:hover {
    background-color: transparent;
    color: #ccc;
}