body {
  font-family: 'Inter', sans-serif;
}

.task {
  cursor: grab;
  background-color: #1f2937;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid #374151;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.2s ease, transform 0.1s ease;
}

.task:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.task:active {
  cursor: grabbing;
}

.dragging {
  opacity: 0.5;
  border: 2px dashed #6b7280;
}

.task-container {
  min-height: 180px;
  transition: background-color 0.3s ease;
}

.drag-over {
  background-color: #374151;
  border-radius: 0.5rem;
}

.task input,
input#task-input {
  font-size: 1rem;
  border-radius: 0.75rem;
  padding: 0.75rem;
  background-color: #1f2937;
  color: white;
  border: 1px solid #4b5563;
}

.task input:focus,
input#task-input:focus {
  border-color: #818cf8;
  outline: none;
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.3);
}

button#add-task-btn {
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.2s, transform 0.1s;
}

button#add-task-btn:hover {
  background-color: #4f46e5;
  transform: translateY(-1px);
}

.kanban-column {
  border-radius: 1rem;
  overflow: hidden;
}

.column-title {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1rem;
  border-bottom: 1px solid #4b5563;
}

.task button {
  font-size: 1.25rem;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.2s ease;
}

.task button:hover {
  color: #f87171;
}
