/* public/assets/css/style.css */

/* Custom styles */

body {
    background-color: #f2f2f2;
}

.navbar {
    background-color: ##5c36ad; /* purple */
}

.navbar-brand, .navbar-nav .nav-link, .navbar-text {
    color: #fff !important;
}

/* Basic styles for the Kanban board */

body {
    background-color: #f8f9fa;
}

.kanban-board {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.kanban-column {
    background-color: #e9ecef;
    border-radius: 5px;
    width: 19%;
    padding: 10px;
    box-sizing: border-box;
}

.kanban-column h3 {
    text-align: center;
}

.kanban-items {
    min-height: 200px;
    padding: 5px;
    background-color: #ffffff;
    border-radius: 5px;
}

.kanban-item {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 5px;
    cursor: move;
}

.kanban-item:hover {
    background-color: #f1f1f1;
}

