::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f5f5f4;
}

::-webkit-scrollbar-thumb {
    background: #d6d3d1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a29e;
}

.chart-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.task-item {
    transition: all 0.2s ease-in-out;
    position: relative;
}

.task-item:hover {
    background-color: #fafaf9;
}

.task-checkbox:checked+span {
    text-decoration: line-through;
    color: #a8a29e;
}

.task-controls {
    opacity: 0;
    transition: opacity 0.2s;
}

.task-item:hover .task-controls {
    opacity: 1;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.day-cell {
    padding: 4px;
    height: 60px;
    overflow: hidden;
    font-size: 0.75rem;
    position: relative;
}

.day-label {
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.task-indicator {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 4px;
}