/* Project Kanban specific styles */
.project-name {
    font-size: 16px;
    font-weight: 600;
    color: #3f51b5;
    margin-bottom: 8px;
    border-bottom: 1px solid #eee;
    padding-bottom: 4px;
}

.project-notes {
    color: #555;
    font-size: 0.85rem;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 8px;
}

.date-field {
    font-size: 0.8rem;
    color: #666;
    background-color: #f5f5f5;
    padding: 2px 5px;
    border-radius: 3px;
    display: inline-block;
    margin-right: 5px;
}

/* Custom card styling for projects */
.kanban-card.project-card {
    border-left: 3px solid #3f51b5;
}

.kanban-card.project-card:hover {
    border-left: 3px solid #f50057;
}

/* Status indicators */
.project-status {
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 5px;
    display: inline-block;
}

.status-active {
    background-color: #4caf50;
    color: white;
}

.status-pending {
    background-color: #ff9800;
    color: white;
}

.status-completed {
    background-color: #2196f3;
    color: white;
}

.status-delayed {
    background-color: #f44336;
    color: white;
}
