body {
    background-color: #f5f5f5;
}

.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.card-body h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Kanban Board Styles */
.kanban-board {
    overflow-x: auto;
    padding: 20px 0;
}

.kanban-container {
    display: flex;
    gap: 15px;
    min-width: fit-content;
    padding-bottom: 10px;
}

.kanban-column {
    min-width: 280px;
    max-width: 280px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
}

.kanban-column-header {
    padding: 8px 15px;
    background-color: #e9ecef;
    border-bottom: 2px solid #dee2e6;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.kanban-column-header h6 {
    margin: 0;
    font-weight: bold;
    color: #495057;
}

.kanban-column-body {
    padding: 10px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kanban-card {
    background-color: white;
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.kanban-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.kanban-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

.kanban-card-header strong {
    color: #495057;
    font-size: 0.9rem;
}

.kanban-card-body {
    font-size: 0.85rem;
}

.kanban-card-item {
    margin-bottom: 4px;
    color: #6c757d;
}

.kanban-card-item strong {
    color: #495057;
}

.kanban-card-item small {
    font-size: 0.75rem;
    color: #868e96;
}

