:root {
    --app-bg: #f6f8fb;
    --app-border: #e5e9f2;
    --app-muted: #667085;
    --app-shadow: 0 10px 30px rgba(15, 23, 42, .06);
    --app-radius: 18px;
    --purple: #7c3aed;
}

body {
    background: var(--app-bg);
    color: #1f2937;
}

.fs-1{
    font-size:.625rem!important
}
.fs-2{
    font-size:.75rem!important
}
.fs-3{
    font-size:.875rem!important
}
.fs-4{
    font-size:1rem!important
}
.fs-5{
    font-size:1.125rem!important
}
.fs-6{
    font-size:1.25rem!important
}
.fs-7{
    font-size:calc(1.275rem + .3vw)!important
}
.fs-8{
    font-size:calc(1.3125rem + .75vw)!important
}
.fs-9{
    font-size:calc(1.35rem + 1.2vw)!important
}
.fs-10{
    font-size:calc(1.375rem + 1.5vw)!important
}
.fs-11{
    font-size:.8125rem!important
}
.fs-12{
    font-size:.9375rem!important
}
.fs-13{
    font-size:calc(1.425rem + 2.1vw)!important
}
.fs-14{
    font-size:calc(1.46875rem + 2.625vw)!important
}

.fst-normal{
    font-style:normal!important
}
.fw-lighter{
    font-weight:300!important
}
.fw-light{
    font-weight:300!important
}
.fw-normal{
    font-weight:400!important
}
.fw-medium{
    font-weight:500!important
}
.fw-semibold{
    font-weight:600!important
}
.fw-bold{
    font-weight:600!important
}
.fw-bolder{
    font-weight:700!important
}

.app-topbar {
    height: 68px;
}

.brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    padding: 0;
}

.menuativo{
    cursor:pointer 
}

.menuinat{
    cursor: not-allowed !important;
}

.user-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.taskway-toolbar {
    min-height: 84px;
}

.kanban-users img,
.kanban-users span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
}

.kanban-users img:first-child {
    margin-left: 0;
}

.kanban-users img {
    object-fit: cover;
}

.kanban-users span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
}

.kanban-search {
    width: 280px;
}

.app-main {
    min-height: calc(100vh - 68px);
    background: var(--app-bg);
}

.kanban-main {
    height: calc(100vh - 153px);
    overflow: hidden;
}

.kanban-board {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 24px 28px;
}

.kanban-board::-webkit-scrollbar {
    height: 12px;
}

.kanban-board::-webkit-scrollbar-track {
    background: transparent;
}

.kanban-board::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
    border: 3px solid var(--app-bg);
}

.kanban-column {
    width: 360px;
    min-width: 360px;
    max-height: 100%;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--app-border);
    border-radius: var(--app-radius);
    box-shadow: var(--app-shadow);
    display: flex;
    flex-direction: column;
    transition: width .2s ease, min-width .2s ease, background .2s ease;
}

.kanban-column-header {
    min-height: 62px;
    padding: 0 16px;
    border-bottom: 1px solid var(--app-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kanban-column-title {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.kanban-column-title strong {
    white-space: nowrap;
}

.kanban-column-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.kanban-count {
    font-size: 12px;
}

.kanban-column-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 14px;
}

.kanban-column-body::-webkit-scrollbar {
    width: 8px;
}

.kanban-column-body::-webkit-scrollbar-track {
    background: transparent;
}

.kanban-column-body::-webkit-scrollbar-thumb {
    background: #d5dbea;
    border-radius: 999px;
}

.kanban-list {
    min-height: 180px;
}

.kanban-card {
    background: #f8fbff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.kanban-card:hover {
    background: #f3f8ff;
    border-color: #bfdbfe;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.kanban-card:active {
    cursor: grabbing;
}

.kanban-card h6 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.kanban-card p {
    color: var(--app-muted);
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 12px;
}

.kanban-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.kanban-drag-handle {
    position: absolute;
    top: 15px;
    left: 8px;
    color: #c4cbd8;
    font-size: 12px;
}

.kanban-card-desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.45;
    margin-top: 8px;
}

.kanban-card-esteira {
    font-size: 0.78rem;
    color: #475569;
    margin-top: 12px;
}

.kanban-card-title {
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    font-size: 0.95rem;
}

.kanban-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
}

.kanban-card-user {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.kanban-card-prazo {
    font-size: 0.78rem;
    white-space: nowrap;
}

.kanban-card-prazo.is-atrasado {
    color: #dc3545;
    font-weight: 600;
}

.kanban-card-prazo.is-hoje {
    color: #f59e0b;
    font-weight: 600;
}

.kanban-card-prazo.is-ok {
    color: #198754;
}

.kanban-card-prazo.is-sem-prazo {
    color: #64748b;
}

.kanban-card-image {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    padding-left: 14px;
}

.kanban-card-image .kanban-drag-handle {
    display: none;
}

.kanban-card-image img {
    width: 120px;
    height: 95px;
    object-fit: cover;
    border-radius: 10px;
}

/* ======================================================
   COLUNAS ESPECIAIS DO KANBAN
   Cancelados / Finalizados
====================================================== */

.kanban-column-special {
    background: #ffffff;
    border: 1px solid #dbe3ef;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
    overflow: hidden;
}

.kanban-column-special .kanban-column-header {
    min-height: 58px;
    padding: 14px 16px;
    border-bottom: 0;
}

.kanban-column-header-special {
    color: #fff;
}

.kanban-column-header-cancelado {
    background: linear-gradient(135deg, #dc3545 0%, #b91c1c 100%);
}

.kanban-column-header-finalizado {
    background: linear-gradient(135deg, #111827 0%, #020617 100%);
}

.kanban-column-header-special .kanban-column-title {
    color: #fff;
    gap: 10px;
}

.kanban-column-header-special .kanban-column-title strong {
    color: #fff;
    font-weight: 700;
}

.kanban-column-header-special .kanban-column-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .18);
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kanban-column-header-special .kanban-column-icon i {
    color: #fff !important;
    font-size: .9rem;
}

.kanban-column-special .kanban-count {
    background: rgba(255, 255, 255, .92) !important;
    color: #111827 !important;
    font-weight: 700;
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kanban-column-special .kanban-column-body {
    background: #f8fafc;
    padding-top: 14px;
}

.kanban-column-special-cancelado .kanban-column-body {
    background: #fffafa;
}

.kanban-column-special-finalizado .kanban-column-body {
    background: #f8fafc;
}

.kanban-column-special .kanban-list {
    padding: 0 14px 14px;
}

.kanban-column-special .kanban-card {
    background: #ffffff;
    border: 1px solid #dbeafe;
    box-shadow: 0 6px 18px rgba(15, 23, 42, .06);
    position: relative;
}

.kanban-column-special .kanban-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, .10);
}

.kanban-column-special-cancelado .kanban-card {
    border-left: 4px solid #dc3545;
}

.kanban-column-special-finalizado .kanban-card {
    border-left: 4px solid #111827;
}

.kanban-column-special .kanban-card-title {
    font-weight: 700;
}

.kanban-column-special .kanban-card-meta,
.kanban-column-special .kanban-card-description {
    color: #475569;
}

.kanban-column-special .kanban-card .badge {
    font-size: .72rem;
}

.kanban-column-fixed {
    cursor: default;
}

.kanban-special-footer {
    padding: 0 14px 14px;
    background: #f8fafc;
}

.kanban-special-footer .btn {
    border-style: dashed;
    font-size: .82rem;
}

.done-card {
    border-left: 3px solid #22c55e;
}

.btn-add-task {
    border: 1px dashed #cbd5e1;
    color: #64748b;
    background: #fff;
    border-radius: 12px;
    height: 44px;
}

.btn-add-task:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #f8fbff;
}

.kanban-column.is-collapsed {
    width: 82px;
    min-width: 82px;
    min-height: 620px;
    background: linear-gradient(180deg, #ffffff, #f3f7ff);
    border-radius: 24px;
}

.kanban-column.is-collapsed .kanban-column-body {
    display: none;
}

.kanban-column.is-collapsed .kanban-column-header {
    position: relative;
    min-height: 620px;
    padding: 58px 8px 18px;
    border-bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
}

.kanban-column.is-collapsed .kanban-column-actions {
    position: absolute;
    top: 10px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
}

.kanban-column.is-collapsed .kanban-column-title {
    flex-direction: column;
    gap: 16px;
}

.kanban-column.is-collapsed .kanban-column-title strong {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 15px;
    letter-spacing: .2px;
}

.kanban-column.is-collapsed .kanban-column-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #eef4ff;
}

.kanban-column.is-collapsed .kanban-count {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.archive-column {
    background: linear-gradient(180deg, #fff, #f7f2ff);
}

.text-purple {
    color: var(--purple);
}

.bg-purple {
    background: var(--purple);
}

.kanban-ghost {
    opacity: .45;
    background: #eef4ff;
}

.kanban-chosen {
    border-color: #2563eb;
}

.kanban-drag {
    opacity: .9;
}

.kanban-card.is-hidden {
    display: none;
}

@media (max-width: 768px) {
    .kanban-main {
        height: calc(100vh - 190px);
    }

    .kanban-search {
        width: 100%;
    }

    .kanban-column {
        width: 310px;
        min-width: 310px;
    }

    .kanban-card-image {
        grid-template-columns: 1fr;
    }

    .kanban-card-image img {
        width: 100%;
        height: 130px;
    }
}

.navbar-taskway {
    min-height: 68px;
    background: #fff;
    border-bottom: 1px solid var(--app-border);
    box-shadow: 0 2px 8px rgba(15, 23, 42, .03);
}

.navbar-taskway .navbar-brand {
    color: #141824;
    font-size: 1.08rem;
}

.navbar-taskway .navbar-brand:hover {
    color: #141824;
    text-decoration: none;
}

.navbar-taskway .brand-text {
    letter-spacing: -.02em;
}

.navbar-taskway-nav {
    gap: .25rem;
}

.navbar-taskway-nav .nav-link {
    height: 40px;
    padding: 0 1rem;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    gap: .45rem;
    color: #525b75;
    font-size: .86rem;
    font-weight: 600;
    transition: background-color .15s ease, color .15s ease;
}

.navbar-taskway-nav .nav-link:hover,
.navbar-taskway-nav .nav-link.show {
    color: #222834;
    background: #eff2f6;
    text-decoration: none;
}

.navbar-taskway-nav .nav-link.active {
    color: #3874ff;
    background: #f5f8ff;
}

.navbar-taskway-nav .nav-link-icon {
    width: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
}

.dropdown-menu-taskway {
    min-width: 13rem;
    padding: .5rem;
    border: 1px solid #e3e6ed;
    border-radius: .75rem;
    background: #fff;
    margin-top: .65rem;
}

.dropdown-menu-taskway .dropdown-item {
    min-height: 36px;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    color: #525b75;
    font-size: .84rem;
    font-weight: 700;
}

.dropdown-menu-taskway .dropdown-item:hover,
.dropdown-menu-taskway .dropdown-item:focus {
    color: #222834;
    background: #eff2f6;
}

.dropdown-menu-taskway .dropdown-item.active {
    color: #3874ff;
    background: #f5f8ff;
}

.navbar-taskway .dropdown-toggle::after {
    margin-left: .35rem;
    font-size: .8rem;
}

@media (max-width: 991.98px) {
    .navbar-taskway {
        height: auto;
        min-height: 68px;
    }

    .navbar-taskway-collapse {
        padding: 1rem 0;
    }

    .navbar-taskway-nav {
        gap: .35rem;
        margin-bottom: 1rem;
    }

    .navbar-taskway-nav .nav-link {
        justify-content: flex-start;
    }

    .dropdown-menu-taskway {
        border: 0;
        box-shadow: none !important;
        margin-top: .25rem;
        padding-left: 1.5rem;
    }
}

@media (min-width: 992px) {
    .navbar-taskway .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }

    .navbar-taskway .nav-item.dropdown:hover > .nav-link {
        color: #222834;
        background: #eff2f6;
        text-decoration: none;
    }

    .navbar-taskway .nav-item.dropdown:hover > .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .navbar-taskway .dropdown-toggle::after {
        transition: transform .15s ease;
    }

    .dropdown-menu-taskway {
        margin-top: .65rem;
    }

    .dropdown-menu-taskway::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -.75rem;
        height: .75rem;
    }
}

.app-page {
    padding: 24px 28px;
}

.app-logo {
    height: 34px;
    width: auto;
    display: block;
}

.user-avatar {
    width: 42px;
    height: 42px;
    object-fit: cover;
}

.taskway-card-table {
    border-radius: 12px;
    overflow: hidden;
}

.taskway-card-table .card-body {
    padding: 1.5rem;
}

.taskway-table thead th {
    background-color: #fff;
    color: #1e293b;
    font-size: 0.8rem;
    font-weight: 500 !important;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 0.9rem;
    white-space: nowrap;
}

.taskway-table tbody td {
    color: #334155;
    font-size: 0.84rem;
    padding: 0.95rem 0.9rem;
    border-bottom: 1px solid #eef2f7;
    vertical-align: middle;
}

.taskway-table tbody tr:hover {
    background-color: #f8fafc;
}

.taskway-table tbody tr:last-child td {
    border-bottom: none;
}


.user-avatar-table {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px;
    max-width: 38px;
    object-fit: cover;
    display: inline-flex;
    vertical-align: middle;
}

.user-avatar-empty {
    background: #eaf1ff;
    color: #0d6efd;
    font-weight: 700;
    font-size: 13px;
}

.taskway-table .btn-light {
    background-color: transparent;
}

.taskway-table .btn-light:hover {
    background-color: #eef4ff;
    color: #0d6efd;
}

/* DataTables - TaskWay baseado no estilo do outro sistema */

.taskway-datatable-card {
    border-radius: 7px;
    border: 0;
    background-color: #fff;
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03), 0px 0px 1px 0px rgba(0, 0, 0, 0.1);
}

.taskway-datatable-card .card-body {
    padding: 24px;
}

.taskway-datatable-card .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 992px) {
    .taskway-datatable-card .table-responsive {
        overflow-x: clip;
    }
}

.taskway-table {
    --bs-table-color: var(--bs-heading-color);
    --bs-table-bg: #fff;
    --bs-table-border-color: rgba(51, 55, 71, 0.08);
    --bs-table-hover-bg: #ebf3f5;

    width: 100%;
    margin-bottom: 1rem;
    vertical-align: top;
    border-color: var(--bs-table-border-color);
    border-collapse: separate;
    border-spacing: 0;    
}

.taskway-table > :not(caption) > * > * {
    padding: 14px 14px;
    color: var(--bs-table-color);
    background-color: var(--bs-table-bg);
    border-bottom-width: var(--bs-border-width);
    border-color: var(--bs-table-border-color);
}

.taskway-table > thead {
    vertical-align: bottom;
}

.taskway-table th {
    color: var(--bs-heading-color);
    font-weight: 600;
}

.taskway-table.table-hover > tbody > tr:hover > * {
    background-color: var(--bs-table-hover-bg);
}

.taskway-table.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: #e9ecef;
}

/* DataTables - seletor de registros */

.table-responsive .dataTables_wrapper .dataTables_length {
    margin-bottom: 1rem;
}

.table-responsive .dataTables_wrapper .dataTables_length label {
    display: flex;
    align-items: center;
    gap: 0;
    color: var(--bs-body-color);
}

.table-responsive .dataTables_wrapper .dataTables_length select {
    min-width: 80px;
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    padding-right: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: .765625rem;
    border-radius: 5px;
    border-color: var(--bs-border-color);
}

/* DataTables - filtro padrão, caso algum dia use */

.table-responsive .dataTables_wrapper .dataTables_filter {
    margin-bottom: 25px;
}

.table-responsive .dataTables_wrapper .dataTables_filter input {
    padding: .25rem .5rem;
    font-size: .765625rem;
    border-radius: 5px;
    border: 1px solid var(--bs-border-color);
}

/* DataTables - informação de registros */

.dataTables_info {
    white-space: nowrap;
}

.table-responsive .dataTables_wrapper .dataTables_info {
    padding-left: 10px;
    color: var(--bs-body-color);
}

/* DataTables - paginação */

.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button {
    cursor: pointer;
    padding: 6px 12px;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-sm);
    margin: 0 3px;
}

.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.current {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* Remove glow azul de foco */

.table-responsive .dataTables_wrapper .dataTables_length select:focus,
.table-responsive .dataTables_wrapper .dataTables_filter input:focus,
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button:focus,
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button:active {
    outline: none;
    box-shadow: none;
}

/* DataTables - botões de exportação, se usar futuramente */

body div.dt-buttons > .dt-button,
body div.dt-buttons > div.dt-button-split .dt-button {
    background: var(--bs-primary);
    border-radius: var(--bs-border-radius-sm);
    background-color: var(--bs-primary);
    border: 1px solid var(--bs-primary);
    color: #fff;
}

body div.dt-buttons > .dt-button:hover,
body div.dt-buttons > div.dt-button-split .dt-button:hover {
    background: var(--bs-primary) !important;
    border-radius: var(--bs-border-radius-sm) !important;
    background-color: var(--bs-primary) !important;
    border: 1px solid var(--bs-primary) !important;
    color: #fff !important;
}

/* Dark mode, se for usar depois */

[data-bs-theme="dark"] .dataTables_length select {
    background-color: #1e293b;
    color: #fff;
    border: 1px solid #334155;
}

[data-bs-theme="dark"] .dataTables_length select option {
    background-color: #1e293b;
    color: #fff;
}

.app-datatable-card {
    border: 0;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.03), 0 0 1px rgba(0, 0, 0, 0.1);
}

.app-datatable-card .card-body {
    padding: 22px 28px 18px 28px;
}

.app-datatable-card .dataTables_wrapper {
    padding-top: 4px;
}

.app-datatable-card .dataTables_length {
    padding-left: 4px;
    margin-bottom: 12px;
}

.app-datatable-card .dataTables_length label {
    display: flex;
    align-items: center;
    gap: 0;
    color: #334155;
    font-size: 0.875rem;
}

.app-datatable-card .dataTables_length select {
    min-width: 80px;
    margin-left: 12px;
    margin-right: 12px;
    padding: 6px 32px 6px 10px;
    font-size: 0.82rem;
    border-radius: 7px;
    border: 1px solid #dbe2ea;
    color: #334155;
    background-color: #fff;
}

.app-datatable-card .dataTables_length select:focus {
    border-color: #b8c7d9;
    box-shadow: none;
    outline: none;
}

.app-datatable {
    color: #334155;
    margin-bottom: 0;
}

.app-datatable thead th,
.app-datatable.dataTable thead th,
table.dataTable.app-datatable thead th,
table.dataTable.app-datatable > thead > tr > th {
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    color: #334155 !important;
    padding: 12px 14px !important;
    background-color: #fff !important;
    border-bottom: 1px solid rgba(51, 55, 71, 0.08) !important;
    white-space: nowrap;
}

.app-datatable tbody td {
    font-size: 0.84rem;
    color: #334155;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(51, 55, 71, 0.08);
    vertical-align: middle;
}

.app-datatable tbody tr:hover td {
    background-color: #f8fafc;
}

.app-datatable-card .dataTables_info {
    padding-left: 4px;
    padding-top: 14px;
    color: #334155;
    font-size: 0.875rem;
    white-space: nowrap;
}

.app-datatable-card .dataTables_paginate {
    padding-top: 10px;
}

.app-datatable-card .pagination {
    justify-content: flex-end;
    margin-bottom: 0;
}

.app-datatable-card .pagination .page-link {
    color: #334155;
    border-color: #dbe2ea;
    border-radius: 7px;
    margin-left: 6px;
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.app-datatable-card .pagination .page-link:focus {
    box-shadow: none;
    outline: none;
}

.app-datatable-card .pagination .page-item.active .page-link {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.app-datatable-card .pagination .page-item.disabled .page-link {
    color: #94a3b8;
    background-color: #f1f5f9;
    border-color: #dbe2ea;
}


.user-config-box {
    height: 38px;
    padding: 0 14px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 16px;
    flex-wrap: nowrap;
}

.user-config-box .form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: auto;
    margin-bottom: 0;
    padding-left: 0;
}

.user-config-box .form-check-input {
    margin-left: 0;
    margin-top: 0;
}

.user-config-box .form-check-label {
    margin-bottom: 0;
    color: #334155;
    white-space: nowrap;
}

.user-menu {
    position: relative;
}

.user-menu-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.user-avatar-img,
.user-avatar-initial {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar-img {
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(7, 27, 58, .14);
}

.user-avatar-initial {
    background: linear-gradient(135deg, #0d6efd, #0747b6);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(7, 27, 58, .14);
}

.user-dropdown {
    min-width: 270px;
    border: 0;
    border-radius: 14px;
    padding: 8px;
    margin-top: 12px;
}

.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 8px;
}

.user-dropdown-avatar img,
.user-dropdown-avatar span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.user-dropdown-avatar img {
    object-fit: cover;
}

.user-dropdown-avatar span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d6efd, #0747b6);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.user-dropdown-info {
    min-width: 0;
}

.user-dropdown-info strong {
    display: block;
    font-size: 14px;
    color: #071b3a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-info small {
    display: block;
    font-size: 12px;
    color: #7b879d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown .dropdown-item {
    border-radius: 9px;
    padding: 9px 10px;
    font-size: 14px;
    color: #26344d;
}

.user-dropdown .dropdown-item:hover {
    background: #f3f6fb;
    color: #0d6efd;
}

.user-dropdown .dropdown-item.text-danger {
    color: #dc3545;
}

.user-dropdown .dropdown-item.text-danger:hover {
    background: rgba(220, 53, 69, .08);
    color: #dc3545;
}

.user-photo-preview {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #0747b6);
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 8px 24px rgba(7, 27, 58, .16);
}

.user-photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notification-menu {
    position: relative;
}

.notification-dropdown {
    width: 360px;
    border: 0;
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    margin-top: 12px;
}

.notification-header {
    padding: 14px 16px;
    border-bottom: 1px solid #edf1f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-header strong {
    font-size: 15px;
    color: #071b3a;
}

.notification-header small {
    font-size: 12px;
    color: #7b879d;
}

.notification-list {
    max-height: 360px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    border-bottom: 1px solid #f0f3f8;
    color: #26344d;
}

.notification-item:hover {
    background: #f7faff;
    color: #26344d;
}

.notification-item-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #eaf1ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.notification-item-body {
    min-width: 0;
    flex: 1;
}

.notification-item-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #071b3a;
    margin-bottom: 2px;
}

.notification-item-text {
    display: block;
    font-size: 12px;
    color: #6e7d96;
    line-height: 1.35;
}

.notification-item-date {
    display: block;
    font-size: 11px;
    color: #9aa6ba;
    margin-top: 5px;
}

.notification-empty {
    padding: 28px 16px;
    text-align: center;
    color: #7b879d;
    font-size: 13px;
}

.notification-footer {
    padding: 10px 16px;
    border-top: 1px solid #edf1f7;
    text-align: center;
}

.notification-footer a {
    font-size: 13px;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.notification-footer a:hover {
    text-decoration: underline;
}

.notification-item-unread {
    background: #f7faff;
}

.notification-item-unread .notification-item-title:after {
    content: "";
    width: 7px;
    height: 7px;
    background: #0d6efd;
    border-radius: 50%;
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
}

.app-list-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.03), 0 0 1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.app-list-body {
    padding: 24px;
    background-color: #fff;
}

.members-box {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background-color: #fff;
    overflow: hidden;
}

.members-box-header {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
    background-color: #f8fafc;
}

.members-search {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.members-list {
    min-height: 320px;
    max-height: 420px;
    overflow-y: auto;
}

.member-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid #f1f5f9;
}

.member-item:last-child {
    border-bottom: 0;
}

.member-item:hover {
    background-color: #f8fafc;
}

.member-info {
    min-width: 0;
}

.member-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-email {
    font-size: 0.78rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #eef4ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
}


#divWorkflowPainelAberto .app-list-card {
    min-height: 300px;
}

#divWorkflowBoardConteudo {
    min-height: 220px;
}

@media (max-width: 767px) {
    .painel-card {
        padding: 1rem;
    }

    .painel-card-desc {
        min-height: auto;
    }

    .painel-card .d-flex.justify-content-between.align-items-end {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .painel-card .d-flex.justify-content-end.gap-2 {
        width: 100%;
    }

    .painel-card .btnAbrirPainel {
        flex: 1;
    }
}

.app-card {
    height: 100%;
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px;
    transition: all .15s ease-in-out;
}

.app-card:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.app-card-clickable {
    cursor: pointer;
}

.app-card-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background-color: #eef4ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 3px;
    line-height: 1.2;
}

.app-card-meta {
    font-size: 0.82rem;
    color: #475569;
}

.app-card-desc {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.5;
}

.app-card-number {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.app-card-label {
    font-size: .825rem;
    color: #64748b;
    margin-top: .25rem;
}

.app-card .btn {
    box-shadow: none;
    white-space: nowrap;
}

.app-card .btn-sm {
    border-radius: 8px;
}

#divWorkflowPainelAberto .app-list-card {
    min-height: 300px;
}

#divWorkflowBoardConteudo {
    min-height: 220px;
}

@media (max-width: 767px) {
    .app-card {
        padding: 1rem;
    }

    .app-card-desc {
        min-height: auto;
    }

    .painel-card .d-flex.justify-content-between.align-items-end {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .painel-card .d-flex.justify-content-end.gap-2 {
        width: 100%;
    }

    .painel-card .btnAbrirPainel {
        flex: 1;
    }
}

.app-card .btn-sm {
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wizard-steps {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.wizard-step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 12px;
    background-color: #f8fafc;
    color: #64748b;
}

.wizard-step span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.wizard-step strong {
    display: block;
    font-size: .86rem;
    color: #334155;
    line-height: 1.1;
}

.wizard-step small {
    display: block;
    font-size: .74rem;
    color: #64748b;
}

.wizard-step.active {
    background-color: #eef4ff;
    border-color: #0d6efd;
}

.wizard-step.active span {
    background-color: #0d6efd;
    color: #fff;
}

.wizard-step.done span {
    background-color: #16a34a;
    color: #fff;
}

.wizard-panel {
    display: none;
}

.wizard-panel.active {
    display: block;
}

.permission-box {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px;
    background-color: #f8fafc;
}

.permission-panel {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background-color: #fff;
    overflow: hidden;
}

.permission-panel-header {
    min-height: 50px;
    padding: 10px 12px;
    border-bottom: 1px solid #e5e7eb;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


@media (max-width: 767px) {
    .wizard-steps {
        flex-direction: column;
    }
}

.permission-search {
    padding: 10px 12px;
    border-bottom: 1px solid #e5e7eb;
    background-color: #fff;
}

.permission-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid #f1f5f9;
}

.permission-item:last-child {
    border-bottom: 0;
}

.permission-item:hover {
    background-color: #f8fafc;
}

.permission-item-info {
    min-width: 0;
}

.permission-item-title {
    font-size: .86rem;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.permission-item-sub {
    font-size: .76rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.permission-list {
    min-height: 120px;
    max-height: 280px;
    overflow-y: auto;
}

#mdPainel .modal-body {
    height: 540px;
    overflow-y: auto;
}

.etapa-color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}

.etapa-icon-preview {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.04);
}

#mdEtapasPainel .modal-content {
    max-height: calc(100vh - 60px);
}

#mdEtapasPainel .modal-body {
    overflow: hidden;
}

#listaEtapasPainel {
    max-height: calc(100vh - 260px);
    overflow-y: auto;
}

.taskway-color-list,
.taskway-icon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.taskway-color-radio,
.taskway-icon-radio {
    display: none;
}

.taskway-color-option,
.taskway-icon-option {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #d8e0ea;
    background-color: #fff;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .15s ease-in-out;
}

.taskway-color-option {
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #d8e0ea;
}

.taskway-icon-option:hover,
.taskway-color-option:hover {
    transform: translateY(-1px);
}

.taskway-icon-radio:checked + .taskway-icon-option {
    border-color: #0d6efd;
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.08);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.16);
}

.taskway-color-radio:checked + .taskway-color-option {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.20);
    border-color: #fff;
}

.drag-etapa-handle {
    cursor: grab;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
}

.drag-etapa-handle:active {
    cursor: grabbing;
}

.drag-etapa-handle:hover {
    color: #0d6efd;
}

.esteira-card {
    position: relative;
}

.esteira-card-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 8px;
    white-space: nowrap;
}

.esteira-card-status-liberada {
    color: #087443;
    background-color: #dff8ec;
}

.esteira-card-status-rascunho {
    color: #946200;
    background-color: #fff4d6;
}

.esteira-card-status-bloqueada {
    color: #9f1239;
    background-color: #ffe4ea;
}

.esteira-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.esteira-card-actions .btn {
    width: 33px;
    height: 33px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.esteira-card-icon-liberada {
    background-color: #eef4ff;
    color: #0d6efd;
}

.esteira-card-icon-rascunho {
    background-color: #fff4d6;
    color: #946200;
}

.esteira-card-icon-bloqueada {
    background-color: #ffe4ea;
    color: #9f1239;
}

.esteira-builder-card {
    min-height: 620px;
}

.flow-node {
    width: 210px;
    min-height: 86px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s ease-in-out;
    padding: 12px 14px;
}


.flow-node-empty {
    border: 2px dashed #94a3b8;
    color: #64748b;
    background-color: #f8fafc;
    cursor: pointer;
}

.flow-node-empty:hover {
    border-color: #0d6efd;
    color: #0d6efd;
    background-color: #eef4ff;
    transform: translateY(-1px);
}

.flow-node-empty-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    font-weight: 600;
    text-align: center;
}

.flow-node-empty-text i {
    font-size: 1.2rem;
}

.flow-node-filled {
    border: 1px solid #b9d3ff;
    background-color: #eef4ff;
    color: #1e293b;
    cursor: pointer;
    padding: 14px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .06);
}

.flow-node-filled:hover {
    background-color: #e3efff;
    border-color: #8bbcff;
    transform: translateY(-1px);
}

.flow-node-selected {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, .14);
}

.flow-node-complete {
    border-color: #86efac;
    background-color: #ecfdf5;
}

.flow-node-invalid {
    border-color: #fecaca;
    background-color: #fff1f2;
}

.flow-node-final {
    border-color: #bbf7d0;
    background-color: #f0fdf4;
}

.flow-node-title {
    font-size: .9rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}


.flow-node-meta {
    font-size: .78rem;
    color: #64748b;
    margin-top: 4px;
}


.flow-node-icon {
    font-size: .78rem;
    color: #64748b;
}

.flow-node-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 999px;
    margin-top: 8px;
}


.flow-node-badge-pending {
    color: #946200;
    background-color: #fff4d6;
}

.flow-node-badge-complete {
    color: #087443;
    background-color: #dff8ec;
}

.flow-node-badge-final {
    color: #087443;
    background-color: #dff8ec;
}

.flow-node-badge-invalid {
    color: #9f1239;
    background-color: #ffe4ea;
}

.esteira-node-panel .form-label {
    font-size: .82rem;
    font-weight: 600;
    color: #334155;
}

.esteira-node-panel .btnNodeSaida {
    text-align: left;
    justify-content: flex-start;
}

.esteira-node-panel .btnNodeSaida i {
    width: 18px;
    text-align: center;
}

.esteira-flow-line {
    width: 2px;
    height: 38px;
    background-color: #cbd5e1;
    margin: 10px auto;
    position: relative;
}

.esteira-flow-line::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #cbd5e1;
    border-bottom: 2px solid #cbd5e1;
    transform: translateX(-50%) rotate(45deg);
}

.esteira-flow-branch-label {
    font-size: .75rem;
    font-weight: 700;
    color: #475569;
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 4px 10px;
    margin-bottom: 10px;
}

.esteira-decision-box {
    min-width: 230px;
    max-width: 280px;
    border: 1px solid #dbeafe;
    background-color: #eff6ff;
    border-radius: 14px;
    padding: 14px;
    text-align: center;
    color: #1e3a8a;
    font-size: .88rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .04);
}

.esteira-decision-box i {
    color: #0d6efd;
}

.alternativa-condicional {
    font-size: .9rem;
}

@media (max-width: 1199.98px) {
    .esteira-builder-card,
    .esteira-node-panel {
        min-height: auto;
    }

    .esteira-flow-area {
        min-height: 420px;
    }

    .flow-start-wrapper {
        min-height: 320px;
    }
}

@media (max-width: 767.98px) {
    .esteira-flow-area {
        padding: 20px;
    }

    .flow-node {
        width: 100%;
        max-width: 230px;
    }

    .esteira-flow-branch {
        flex-direction: column;
        gap: 22px;
    }
}

@media (max-width: 1400px) {
    .flow-node {
        width: 190px;
        min-height: 78px;
        padding: 10px 12px;
    }

    .esteira-flow-branch {
        gap: 22px;
    }

    .esteira-flow-branch-item {
        min-width: 190px;
    }

    .esteira-decision-card {
        min-width: 230px;
        max-width: 300px;
        padding: 12px 14px;
    }
}

.esteira-wizard-card {
    background-color: #fff;
}

.esteira-wizard-card .wizard-steps {
    margin-bottom: 24px;
}

.esteira-wizard-card .wizard-panel {
    min-height: 360px;
}

.node-saida-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.node-saida-option {
    display: block;
    border: 1px solid #e5e7eb;
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
    transition: all .15s ease-in-out;
}

.node-saida-option:hover {
    background-color: #fff;
    border-color: #cbd5e1;
}

.node-saida-label {
    display: block;
    cursor: pointer;
}

.node-saida-option .form-check {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding-left: 0;
}

.node-saida-option .form-check-input {
    margin-left: 0;
    margin-top: 3px;
    flex-shrink: 0;
}

.node-saida-title {
    font-size: .86rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.2;
}

.node-saida-desc {
    font-size: .76rem;
    color: #64748b;
    line-height: 1.35;
    margin-top: 3px;
}

.node-saida-option:has(.node-tipo-saida:checked) {
    border-color: #0d6efd;
    background-color: #eef4ff;
}

.node-condicional-box {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #dbeafe;
    cursor: default;
}

.node-condicional-box .form-label {
    font-size: .8rem;
    font-weight: 600;
    color: #334155;
}

.alternativa-no-row .btn {
    width: 42px;
    padding-left: 0;
    padding-right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#btnAddAlternativaNo {
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.esteira-decision-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.esteira-decision-card {
    min-width: 260px;
    max-width: 380px;
    border: 1px solid #bfdbfe;
    background-color: #eff6ff;
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .04);
}

.esteira-decision-title {
    font-size: .72rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.esteira-decision-question {
    font-size: .94rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
}

.flow-node-wrapper > .flow-node {
    margin-left: auto;
    margin-right: auto;
}

.flow-next-simple,
.flow-conditional-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-node-reference {
    border: 1px solid #bfdbfe;
    background-color: #eff6ff;
    color: #1e293b;
    padding: 14px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .04);
}


.esteira-node-panel {
    position: sticky;
    top: 10px;
    height: calc(100vh - 110px);
    overflow-y: auto;
}

.btn-flow-node {
    border: 0;
    background: transparent;
    color: #64748b;
    padding: 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .86rem;
}

.btn-flow-node:hover {
    color: #dc3545;
}

.esteira-flow-area {
    height: calc(100vh - 100px);
    background-color: #fff;
    border: 1px dashed #d1d5db;
    border-radius: 12px;
    padding: 0;
    overflow: auto;
    position: relative;
}

.esteira-flow-canvas {
    width: max-content;
    min-width: 100%;
    padding: 42px 80px 56px 80px;
    box-sizing: border-box;
}

.flow-start-wrapper {
    min-height: 430px;
    width: max-content;
    min-width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.flow-node-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
}

.flow-conditional-area {
    width: max-content;
    margin-top: 10px;
}

.esteira-flow-branch {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 36px;
    margin-top: 8px;
    flex-wrap: nowrap;
}

.esteira-flow-branch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 230px;
}

.node-custom-fields-box {
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 14px;
    margin-top: 18px;
    margin-bottom: 18px;
}

.node-fields-list {
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
}

.node-fields-empty {
    font-size: .82rem;
    color: #64748b;
    background-color: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.node-custom-fields-box #btnNovoCampoNode {
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.node-fields-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.node-field-item {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e5e7eb;
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 9px 10px;
}

.node-field-drag {
    color: #94a3b8;
    cursor: grab;
    font-size: .9rem;
    flex-shrink: 0;
}

.node-field-content {
    min-width: 0;
    flex: 1;
}

.node-field-title {
    font-size: .86rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.2;
}

.node-field-meta {
    font-size: .75rem;
    color: #64748b;
    margin-top: 2px;
}

.node-field-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.node-field-actions .btn {
    width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.campo-opcoes-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.campo-opcao-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid #e5e7eb;
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 6px 8px 6px 10px;
}

.campo-opcao-label {
    font-size: .84rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.2;
    min-width: 0;
    word-break: break-word;
}

.btnRemoveOpcaoCampoNode {
    width: 26px;
    height: 26px;
    border: 0;
    background: transparent;
    color: #dc3545;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.btnRemoveOpcaoCampoNode:hover {
    background-color: #fee2e2;
    color: #b91c1c;
}

.access-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.access-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid #e5e7eb;
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 10px 12px;
}

.access-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background-color: #eef4ff;
    color: #0d6efd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 700;
}

.access-avatar-group {
    border-radius: 10px;
}

.access-content {
    min-width: 0;
    flex: 1;
}

.access-title {
    font-size: .9rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.access-sub {
    font-size: .78rem;
    color: #64748b;
    margin-top: 2px;
}

.access-meta {
    font-size: .76rem;
    color: #475569;
    margin-top: 4px;
}

.etapa-permissoes-box .SumoSelect {
    width: 100%;
    display: block;
}

.etapa-permissoes-box .SumoSelect > .CaptionCont {
    width: 100%;
    min-height: 38px;
    border: 1px solid #d9dee7;
    border-radius: 7px;
    padding: 6px 34px 6px 12px;
    background-color: #fff;
}

.etapa-permissoes-box .SumoSelect > .CaptionCont > span {
    color: #2d3748;
    font-size: .95rem;
    line-height: 24px;
}

.etapa-permissoes-box .SumoSelect.open > .optWrapper {
    width: 100%;
    top: 40px;
    border-radius: 8px;
    border-color: #d9dee7;
    box-shadow: 0 10px 25px rgba(15, 23, 42, .12);
}

.etapa-permissoes-box .SumoSelect .optWrapper .options li.opt {
    padding: 8px 10px;
}

.etapa-permissoes-box .SumoSelect .optWrapper .options li.group > label {
    font-weight: 700;
    color: #1f2937;
    padding: 8px 10px 4px;
}

.etapa-permissoes-box .SumoSelect > .CaptionCont {
    position: relative;
    width: 100%;
    min-height: 38px;
    border: 1px solid #d9dee7;
    border-radius: 7px;
    padding: 7px 38px 7px 12px;
    background: #fff;
}

.etapa-permissoes-box .SumoSelect > .CaptionCont > label {
    position: absolute;
    right: 12px;
    top: 50%;
    width: 14px;
    height: 14px;
    margin: 0;
    transform: translateY(-50%);
}

.etapa-permissoes-box .SumoSelect > .CaptionCont > label > i {
    display: block;
    width: 8px;
    height: 8px;
    border: solid #475569;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: 0;
    background: none;
}

.access-avatar-photo {
    overflow: hidden;
    padding: 0;
    background-color: transparent;
}

.access-avatar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-permissions-box {
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 16px;
}

.access-summary-card {
    border: 1px solid #e5e7eb;
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 14px;
}

.access-summary-label {
    font-size: .78rem;
    color: #64748b;
}

.access-summary-number {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.1;
}

.review-access-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-access-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid #e5e7eb;
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 10px 12px;
}

.review-access-avatar,
.review-access-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .76rem;
    font-weight: 700;
    flex-shrink: 0;
}

.review-access-avatar-photo {
    padding: 0;
    overflow: hidden;
    background-color: transparent;
}

.review-access-avatar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-access-content {
    min-width: 0;
}

.review-access-title {
    font-size: .88rem;
    font-weight: 700;
    color: #1e293b;
}

.review-access-sub {
    font-size: .78rem;
    color: #64748b;
}

.review-access-meta {
    font-size: .76rem;
    color: #475569;
    margin-top: 2px;
}

.kanban-toolbar-search {
    width: 260px;
}

.kanban-toolbar-select {
    width: 220px;
}

@media (max-width: 768px) {
    .kanban-toolbar-search,
    .kanban-toolbar-select {
        width: 100%;
    }

    #toolbarKanbanPainel .btn {
        width: 100%;
    }
}

.kanban-nav-btn {
    position: fixed;
    top: 56%;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(37, 99, 235, .25);
    border-radius: 50%;
    background-color: rgba(219, 234, 254, .82);
    color: #2563eb;
    box-shadow: 0 8px 22px rgba(37, 99, 235, .18);
    backdrop-filter: blur(4px);
    z-index: 1040;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s ease;
}

.kanban-nav-btn:hover {
    background-color: rgba(191, 219, 254, .95);
    color: #1d4ed8;
    border-color: rgba(37, 99, 235, .4);
    transform: translateY(-1px);
}

.kanban-nav-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
    transform: none;
    background-color: rgba(226, 232, 240, .75);
    color: #64748b;
    border-color: rgba(148, 163, 184, .35);
}

.kanban-nav-left {
    left: 18px;
}

.kanban-nav-right {
    right: 18px;
}

.kanban-empty {
    max-width: 980px;
    margin: 28px auto 0 auto;
}

.kanban-empty > p {
    max-width: 720px;
    line-height: 1.55;
}

.kanban-empty .row {
    margin-bottom: 1.25rem !important;
}

.kanban-empty .alert {
    font-size: 13px;
    border-radius: 999px;
    padding: 8px 14px;
}

@media (max-height: 820px) {
    .kanban-empty {
        margin-top: 18px;
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important;
    }

    .kanban-empty .mb-3 {
        margin-bottom: .75rem !important;
    }

    .kanban-empty .fa-3x {
        font-size: 2.2em;
    }

    .kanban-empty h5 {
        margin-bottom: .5rem !important;
    }

    .kanban-empty > p {
        margin-bottom: 1.25rem !important;
        line-height: 1.45;
    }

    .kanban-empty .row {
        margin-bottom: 1rem !important;
    }

    .kanban-empty .border.rounded-3 {
        padding: .85rem !important;
    }

    .kanban-empty .small {
        font-size: .8rem;
    }
}

img.member-avatar {
    object-fit: cover;
    padding: 0;
}

#kanbanMainPainel {
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
}

#kanbanBoardTaskway {
    width: max-content;
    min-width: 100%;
}

@media (max-width: 768px) {
    .kanban-nav-btn {
        width: 38px;
        height: 38px;
    }

    .kanban-nav-left {
        left: 10px;
    }

    .kanban-nav-right {
        right: 10px;
    }
}

.empty-state {
    width: 100%;
    min-height: 320px;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 42px 24px;
    text-align: center;
}

.empty-state-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: rgba(13, 110, 253, 0.10);
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 22px;
}

.empty-state h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.empty-state p {
    max-width: 680px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.empty-state-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 28px;
}

.empty-state-info div {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 8px 14px;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
}

.empty-state-info i {
    color: #0d6efd;
}

.campo-node-config-list {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.campo-node-config-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid #eef2f7;
}

.campo-node-config-item:last-child {
    border-bottom: 0;
}

.campo-node-config-switch {
    margin: 0;
    padding-top: 2px;
    min-width: 42px;
}

.campo-node-config-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 0;
    cursor: pointer;
}

.campo-node-config-title {
    font-weight: 600;
    color: #1f2937;
}

.campo-node-config-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.45;
}


/* =========================================================
   CARD PAGE
========================================================= */

.card-page .app-card {
    height: auto;
    background-color: #fff;
}

.card-detail-board {
    padding: 0;
    overflow: hidden;
}

.card-detail-grid {
    display: grid;
    grid-template-columns: 1.25fr .95fr;
    grid-template-rows: auto minmax(360px, 1fr);
}

.card-detail-section {
    padding: 22px 24px;
    min-width: 0;
}

.card-detail-section-main {
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.card-detail-section-fields {
    border-bottom: 1px solid #e5e7eb;
}

.card-detail-section-history {
    border-right: 1px solid #e5e7eb;
}

.card-section-title {
    font-size: .98rem;
    font-weight: 700;
    color: #0f172a;
}

.card-section-sub {
    font-size: .8rem;
    color: #64748b;
}

.card-data-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.card-data-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #334155;
    font-size: .9rem;
    line-height: 1.45;
}

.card-data-row span {
    color: #475569;
    font-weight: 600;
    min-width: 118px;
}

.card-data-row strong {
    color: #0f172a;
    font-weight: 500;
}

.card-data-row-description {
    margin-top: 6px;
    flex-direction: column;
    gap: 4px;
}

.card-data-row-description span {
    min-width: 0;
}

.card-data-row-description div {
    color: #334155;
    line-height: 1.55;
    white-space: pre-line;
}

.card-actions-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #eef2f7;
}

.card-field-group {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
    background-color: #fff;
}

.card-field-group-header {
    min-height: 46px;
    padding: 10px 14px;
    background-color: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-field-group-title {
    font-size: .88rem;
    font-weight: 700;
    color: #1e293b;
}

.card-field-group-meta {
    font-size: .76rem;
    color: #64748b;
}

.card-field-list {
    padding: 14px;
}

.card-field-row {
    display: grid;
    grid-template-columns: minmax(170px, 230px) 1fr;
    gap: 14px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.card-field-row:last-child {
    border-bottom: 0;
}

.card-field-label {
    font-size: .86rem;
    font-weight: 600;
    color: #334155;
}

.card-field-help {
    font-size: .75rem;
    color: #64748b;
    margin-top: 3px;
}

.card-field-locked {
    background-color: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    padding: 9px 10px;
    color: #64748b;
    font-size: .82rem;
}

.card-field-locked i {
    color: #0d6efd;
}

.card-history-list,
.card-attachment-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-history-item,
.card-attachment-item {
    display: flex;
    gap: 12px;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background-color: #f8fafc;
}

.card-history-icon,
.card-attachment-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background-color: #eef4ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-history-title,
.card-attachment-title {
    font-size: .9rem;
    font-weight: 700;
    color: #1e293b;
}

.card-history-meta,
.card-attachment-meta {
    font-size: .78rem;
    color: #64748b;
    margin-top: 2px;
}

.card-history-desc,
.card-attachment-desc {
    font-size: .84rem;
    color: #475569;
    margin-top: 6px;
}

@media (max-width: 1199.98px) {
    .card-detail-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .card-detail-section-main,
    .card-detail-section-history {
        border-right: 0;
    }

    .card-detail-section-main,
    .card-detail-section-fields,
    .card-detail-section-history {
        border-bottom: 1px solid #e5e7eb;
    }
}

@media (max-width: 767.98px) {
    .card-detail-section {
        padding: 18px;
    }

    .card-data-row {
        flex-direction: column;
        gap: 2px;
    }

    .card-data-row span {
        min-width: 0;
    }

    .card-actions-footer .btn {
        width: 100%;
    }

    .card-field-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.btn-card-action {
    height: 34px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: .84rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.card-toolbar {
    width: 100%;
    min-height: 86px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-sizing: border-box;
}

.card-toolbar-title-area {
    min-width: 0;
    flex: 1;
}

.card-toolbar-title-line {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.card-toolbar-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

.card-toolbar-meta {
    font-size: .84rem;
    color: #64748b;
}

.card-toolbar-meta strong {
    color: #1f2937;
    font-weight: 600;
}

.card-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.card-page {
    padding: 24px 28px;
}

.card-page .app-page-content {
    padding: 0;
}

.card-action-hint {
    margin-top: 18px;
    padding: 13px 14px;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    background-color: #eff6ff;
    color: #1e3a8a;
    font-size: .86rem;
}

.card-action-hint-title {
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.card-action-hint-question {
    color: #1e40af;
    margin-bottom: 8px;
}

.card-action-hint-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.card-action-hint-option {
    padding: 4px 9px;
    border-radius: 999px;
    background-color: #dbeafe;
    color: #1d4ed8;
    font-size: .78rem;
    font-weight: 600;
}

.card-action-radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.card-action-radio-option {
    cursor: pointer;
    margin: 0;
}

.card-action-radio-option input {
    display: none;
}

.card-action-radio-option span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 5px 12px;
    border-radius: 999px;
    background-color: #dbeafe;
    color: #1d4ed8;
    font-size: .8rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all .15s ease;
}

.card-action-radio-option:hover span {
    background-color: #bfdbfe;
}

.card-action-radio-option input:checked + span {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.card-field-edit-row {
    padding: 14px 0;
    border-bottom: 1px solid #eef2f7;
}

.card-field-edit-row:last-child {
    border-bottom: 0;
}

.card-field-edit-label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 3px;
    font-size: .88rem;
    font-weight: 700;
    color: #1e293b;
}

.card-field-readonly-group {
    max-width: 100%;
}

.card-field-readonly-input {
    background-color: #f8fafc;
    border-color: #dbe3ef;
    color: #0f172a;
    font-size: .9rem;
    cursor: default;
}

.card-field-readonly-input:focus {
    background-color: #f8fafc;
    border-color: #dbe3ef;
    box-shadow: none;
}

.btn-card-field-edit {
    border-color: #f59e0b;
    background-color: #fff7ed;
    color: #ea580c;
    min-width: 42px;
}

.btn-card-field-edit:hover {
    border-color: #ea580c;
    background-color: #ea580c;
    color: #fff;
}

/* ======================================================
   Permissões extras da etapa
   ====================================================== */

#boxPermissoesExtrasEtapa {
    margin-top: 1rem;
    margin-bottom: 1.25rem;
}

#boxPermissoesExtrasEtapa .table-responsive {
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    overflow: hidden;
    background: #fff;
}

#boxPermissoesExtrasEtapa table {
    margin-bottom: 0;
    font-size: .875rem;
}

#boxPermissoesExtrasEtapa thead th {
    background: #f8fafc;
    color: #475569;
    font-size: .68rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: .01em;
    border-bottom: 1px solid #e5e7eb;
    padding: .6rem .75rem;
    white-space: nowrap;
}

.etapa-extra-perm-col {
    width: 120px;
}

#boxPermissoesExtrasEtapa tbody td {
    padding: .65rem .75rem;
}

#boxPermissoesExtrasEtapa .form-switch .form-check-input {
    width: 2.1em;
    height: 1.15em;
}

#boxPermissoesExtrasEtapa tbody tr:last-child td {
    border-bottom: 0;
}

#boxPermissoesExtrasEtapa tbody tr:hover {
    background: #f8fafc;
}

.etapa-extra-perm-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #eef2ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex: 0 0 auto;
}

.etapa-extra-perm-title {
    font-weight: 600;
    color: #1f2937;
    line-height: 1.15;
}

.etapa-extra-perm-sub {
    color: #64748b;
    font-size: .78rem;
    margin-top: 2px;
}

#boxPermissoesExtrasEtapa .form-switch {
    padding-left: 0;
}

#boxPermissoesExtrasEtapa .form-switch .form-check-input {
    margin-left: 0;
    cursor: pointer;
    width: 2.4em;
    height: 1.25em;
}

#boxPermissoesExtrasEtapa .form-check-input:checked {
    background-color: #2563eb;
    border-color: #2563eb;
}

/* ======================================================
   Modal de etapas com rolagem
   ====================================================== */

#mdEtapasPainel .modal-content {
    max-height: calc(100vh - 32px);
}

#mdEtapasPainel .modal-body {
    overflow-y: auto;
}

#mdEtapasPainel .modal-header {
    flex-shrink: 0;
}

#mdEtapasPainel .modal-footer {
    flex-shrink: 0;
    background: #fff;
}

.coluna-projeto.is-collapsed .btnEditColunaProjeto,
.coluna-projeto.is-collapsed .btnExcluirColunaProjeto {
    display: none;
}

.kanban-column-drag {
    cursor: grab;
}

.kanban-column-drag:active {
    cursor: grabbing;
}

.kanban-column-ghost {
    opacity: .45;
}