/* Kanban Board Global Styles */
.kanban-container {
  padding: 0px;
  min-height: 100vh;
  /*overflow-x: auto;*/
  /*width: 2000px;*/
  max-width: 150% !important;
}

.kanban-header {
  text-align: center;
  margin-bottom: 30px;
  
  h1 {
    color: #333;
    font-weight: 300;
    margin: 0;
  }
}

.kanban-board {
  display: flex;
  gap: 20px;
  padding: 10px;
}

.kanban-column {
  /*min-width: 300px;*/
  min-width: 220px !important;
  max-width: 220px !important;
  /*width: 220px !important;*/
  background-color: #e3f2fd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.column-header {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 15px;
  padding: 10px;
  background-color: rgba(255,255,255,0.7);
  border-radius: 4px;
  text-align: center;
}

.task-list {
  min-height: 200px;
}

.task-card {
  background-color: white;
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  cursor: move;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  
  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }
}

.task-title {
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.task-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.task-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #999;
}

.priority-badge {
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  
  &.high {
    background-color: #ffebee;
    color: #c62828;
  }
  
  &.medium {
    background-color: #fff3e0;
    color: #ef6c00;
  }
  
  &.low {
    background-color: #e8f5e8;
    color: #2e7d32;
  }
}

/* CDK Drag and Drop */
.cdk-drag-preview {
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
              0 8px 10px 1px rgba(0, 0, 0, 0.14),
              0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.cdk-drag-placeholder {
  opacity: 0;
}

.cdk-drag-animating {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}

.cdk-drop-list-dragging .cdk-drag:not(.cdk-drag-placeholder) {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}

/* Responsive Design */
/*@media (max-width: 768px) {
  .kanban-board {
    flex-direction: column;
  }
  
  .kanban-column {
    min-width: auto;
    width: 100%;
  }
  
  .kanban-container {
    padding: 10px;
  }
}*/

/* Add Task Button */
.add-task-btn {
  width: 100%;
  margin-top: 10px;
  border: 2px dashed #ccc;
  background: transparent;
  color: #666;
  
  &:hover {
    border-color: #999;
    color: #333;
  }
}