body {
    font-family: 'Inter', sans-serif;
}
.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background-color: #e2e8f0;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #94a3b8;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #64748b;
}
.dragging {
    opacity: 0.5;
    transform: rotate(2deg);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.view-toggle-btn.active {
    background-color: #3b82f6;
    color: white;
}
.calendar-day:empty {
    background-color: transparent;
    pointer-events: none;
}
.day-with-events {
    cursor: pointer;
    transition: background-color: 0.2s;
}
.day-with-events:hover {
    background-color: #f1f5f9; /* slate-100 */
}
/* Стили для таймлайна */
.timeline {
    position: relative;
    padding-left: 3rem; /* Отступ для линии */
    margin: 1rem 0;
}
.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem; /* Положение линии */
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #cbd5e1; /* slate-300 */
}
.timeline-dot {
    position: absolute;
    left: -2.95rem; /* Положение точки на линии */
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 9999px;
    border: 3px solid white;
}
.status-filter-btn.active {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
}
.status-filter-btn.active .count-badge {
    background-color: white;
    color: #3b82f6;
}

/* Make body take full height for kanban page */
body.full-width-body {
    background-color: #f1f5f9; /* bg-slate-100 */
    color: #1e293b; /* text-slate-800 */
}

/* Ensure root div in kanban takes full screen height */
.h-screen-kanban {
    height: calc(100vh - 100px); /* Adjust 100px based on actual header height */
}
