body { background-color: #f5f5f5; }

.kanban-column {
    background: #e9ecef;
    border-radius: .5rem;
    padding: .5rem;
    min-height: 250px;
    max-height: 70vh;
    overflow-y: auto;
}

.kanban-card { margin-bottom: .5rem; cursor: grab; }
.kanban-card.dragging { opacity: .5; }
.kanban-column.drag-over { outline: 2px dashed #0d6efd; }

/* Prioridades */
.priority-Baixa .card-header { background: #d1e7dd; }
.priority-Média .card-header { background: #cff4fc; }
.priority-Alta .card-header { background: #fff3cd; }
.priority-Crítica .card-header { background: #f8d7da; }

/* Categorias */
.category-Desenvolvimento { border-left: 4px solid #0d6efd; }
.category-Suporte         { border-left: 4px solid #198754; }
.category-Infraestrutura  { border-left: 4px solid #fd7e14; }
.category-Gestão          { border-left: 4px solid #6f42c1; }


.filter-box {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.filter-chip {
    padding: .4rem .8rem;
    background: #f1f1f1;
    border-radius: 20px;
    cursor: pointer;
    user-select: none;
    transition: all .2s;
    border: 1px solid #ccc;
    font-size: .85rem;
}

.filter-chip:hover {
    background: #e4e4e4;
}

.filter-chip.active {
    background: #0d6efd;
    color: white;
    border-color: #0a58ca;
    box-shadow: 0 0 4px rgba(13,110,253,.5);
}

.compact .kanban-card .card-body {
    display: none;
}

.compact .kanban-card {
    padding: 4px !important;
    margin-bottom: 5px !important;
    min-height: 32px;
}

.compact .kanban-card .card-header {
    padding: 4px 8px !important;
    font-size: 0.8rem;
}

/* Container fixo no canto inferior direito */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 9999;
}

/* Base dos botões redondos */
.btn-action {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    transition: all .15s ease-in-out;
    user-select: none;
}

/* Botão maior (+) → 20% maior */
.btn-add {
    background-color: #0d6efd;
    width: 70px;
    height: 70px;
    font-size: 38px;
}

/* Botão menor (compact mode) */
.btn-compact {
    background-color: #6c757d;
    width: 58px;
    height: 58px;
    font-size: 32px;
}

/* Efeito hover */
.btn-action:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 18px rgba(0,0,0,.3);
}

/* Clique rápido */
.btn-action:active {
    transform: scale(0.94);
}
