﻿@import url('/css/kanban.css');

.kanban {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    overflow-x: auto;
    padding: 8px 4px;
}

.column {
    background: #fff;
    padding: 12px;
    min-width: 260px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

    .column h3 {
        font-size: 1rem;
        margin-bottom: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.cards {
    min-height: 40px;
}

.card {
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(16,24,40,.04);
    border: 1px solid rgba(0,0,0,.04);
}

    .card .inline {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 6px;
        padding: 6px 8px;
        border-radius: 6px;
        border: 1px solid #e6e9ef;
    }

    .card .notes {
        min-height: 60px;
    }

    .card .meta {
        font-size: .85rem;
        color: #6b7280;
    }

.actions {
    margin-top: 6px;
    font-size: .85rem;
}

/* Responsive: stack columns on small screens */
@media (max-width: 767px) {
    .kanban {
        flex-direction: column;
    }

    .column {
        width: auto;
    }
}

/* compact look for table in users */
.table-compact td, .table-compact th {
    padding: .4rem .6rem;
}

/* small helpers */
.badge-inline {
    vertical-align: middle;
    margin-left: 6px;
}

/* adjust for new layout main content spacing */
.content {
    padding-top: 12px;
}

.kanban-card {
    cursor: grab !important;
}

.aiqon-logo {
    width: 250px;
}

.float-right {
    float: right;
}
