body {
    font-size: 0.95rem;
}

.navbar {
    height: 80px;
    overflow: visible;
}

.main-content {
    min-width: 0;
    padding-bottom: 80px;
}

.app-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: #f8f9fa;
}

/* Menu principal no cabecalho */
.app-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.app-nav-link .bi {
    font-size: 1.05rem;
    flex-shrink: 0;
    width: 1.15rem;
    text-align: center;
}

.app-nav-link.active,
.app-nav-link.show {
    color: #fff !important;
    font-weight: 600;
}

.app-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.app-dropdown-item .bi {
    font-size: 1rem;
    flex-shrink: 0;
    width: 1.15rem;
    text-align: center;
    color: #6c757d;
}

.app-dropdown-item.active {
    background-color: #e7f1ff;
    color: #0d6efd;
    font-weight: 600;
}

.app-dropdown-item.active .bi {
    color: #0d6efd;
}

.dropdown-menu {
    min-width: 15rem;
}

@media (max-width: 991.98px) {
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #343a40;
        z-index: 1030;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 0.5rem 1rem 1rem;
    }
}

.card {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.kanban-board {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.kanban-column {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    flex: 0 0 230px;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 260px);
}

.kanban-column-header {
    padding: 0.5rem 0.75rem;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    font-size: 0.82rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.5rem 0.5rem 0 0;
}

.kanban-column-body {
    padding: 0.5rem;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 120px;
    transition: background-color 0.15s ease;
}

.kanban-column-body.drag-over {
    background-color: rgba(13, 110, 253, 0.08);
}

.kanban-resolvido-body {
    padding: 0.5rem;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 80px;
}

.kanban-card {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.4rem;
    padding: 0.5rem 0.6rem;
    margin-bottom: 0.5rem;
    cursor: grab;
    font-size: 0.76rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.kanban-card.dragging {
    opacity: 0.4;
}

.kanban-card.vencido {
    border-left: 4px solid #dc3545;
}

.kanban-card .kanban-card-title {
    font-weight: 600;
    font-size: 0.8rem;
}

.kanban-card .kanban-card-desc {
    font-size: 0.72rem;
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.kanban-card .btn {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
}
