/* style.css */

/* Custom scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.3);
}

::-webkit-scrollbar-thumb {
  background: rgba(100, 116, 139, 0.4);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 116, 139, 0.6);
}

/* Custom styling for date pickers inside dark themes */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

/* Task row active feedback */
.task-row {
    transition: transform 0.1s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.task-row:active {
    transform: scale(0.995);
}

/* Board card hover details */
.board-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.board-card:hover {
    transform: translateY(-2px);
}

/* Focus states reset */
input:focus, textarea:focus {
    outline: none !important;
}

/* Clamp text styling */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
