@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Jost", sans-serif !important;
    font-size: 15px;
}

/* Kanban board layout */
.kanban-board {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.kanban-column {
    flex: 1;
    min-width: 250px;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

.kanban-column h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: #333;
}

/* Revenue display */
.kanban-revenue-total {
    font-size: 0.9rem;
    font-weight: normal;
    margin-bottom: 16px;
    text-align: center;
    color: #666;
    /* Grey text */
}

.kanban-cards {
    min-height: 200px;
    border: 2px dashed #e5e5e5;
    padding: 10px;
    border-radius: 8px;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

/* Highlight the drop area when a card is dragged over */
.kanban-cards.drag-over {
    background-color: #d3f8e2;
    border-color: #28a745;
}

/* Card styles */
.kanban-card {
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: grab;
    user-select: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #ffffff;
}

.kanban-card.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
    /* Slight rotation for drag effect */
}

.kanban-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


.kanban-cards.drag-over {
    background-color: #d3f8e2;
    border-color: #28a745;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.kanban-card h4,
.kanban-card p {
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}

.kanban-card h4 {
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: bold;
}

.kanban-card p {
    font-size: 0.9rem;
}

.note {
    padding: 10px;
    border-bottom: 1px solid #dee2e6;
}

.note:last-child {
    border-bottom: none;
}

.btn-white {
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
}

.btn-white:hover {
    background: #28a745 !important;
    color: #fff;
    border: 1px solid #28a745;
}

.dragging {
    opacity: 0.5;
}

.dragover {
    border: 2px dashed #007bff;
}

table.table.table-striped {
    font-size: 13px;
}