/* Modern Kanban + Calendar styles
   Designed for a clean, elevated UX that matches the site's palette.
*/

/* Layout */
.dashboard-layout { display:flex; gap:20px; align-items:flex-start; }
.dashboard-content { flex:1; padding:28px; background:transparent; }
.tarefas-page { padding: 6px 0 60px 0; }

.page-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 14px 18px;
    margin-bottom: 22px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #ececea;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(11,107,74,0.03);
}
.page-title {
    margin: 0;
    font-size: 24px;
    color: #1b3b2f;
    font-weight: 700;
    letter-spacing: -0.2px;
    flex: 0 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
}
/* ==========================================================
   TOOLBAR DE AÇÕES — sistema de botões
   ========================================================== */

.page-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex: 1 1 auto;
    min-width: 0;
}

/* Botões resumidos em ícone: só na barra de ações do topo (.page-actions).
   Escopado para não vazar pros botões do modal de tarefa, que reusam .button
   com texto normal (Excluir / Cancelar / Salvar Alterações). */
.page-actions .button span { display: none; }
.page-actions .button i { font-size: 14px; }
.page-actions .button {
    width: 38px;
    padding: 0;
}
.page-actions #btn-criar-quadro { width: auto; padding: 0 12px; } /* ação primária: mantém um pouco de respiro */

.pa-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pa-divider {
    width: 1px;
    align-self: stretch;
    min-height: 26px;
    background: #e8ebe9;
    flex: 0 0 auto;
}

.label-quad {
    font-weight: 600;
    color: #6b7a72;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-right: 2px;
}

.select-quad-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.select-quad {
    appearance: none;
    -webkit-appearance: none;
    padding: 9px 30px 9px 12px;
    border-radius: 9px;
    border: 1px solid #e2e5e3;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #233;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.select-quad:hover { border-color: #c9d2cd; }
.select-quad:focus-visible {
    outline: none;
    border-color: #0b6b4a;
    box-shadow: 0 0 0 3px rgba(11,107,74,0.14);
}
.select-quad-caret {
    position: absolute;
    right: 11px;
    font-size: 10px;
    color: #8a978f;
    pointer-events: none;
}

/* ---------- Botão base: todas as variantes herdam daqui ---------- */
.button,
.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 38px;
    padding: 0 14px;
    border-radius: 9px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    transition: transform .12s cubic-bezier(.2,.8,.2,1),
                background-color .15s ease,
                border-color .15s ease,
                box-shadow .15s ease,
                color .15s ease,
                opacity .15s ease;
}
.button i, .icon-btn i { font-size: 13px; line-height: 1; }
.button:active, .icon-btn:active { transform: scale(0.96); }
.button:focus-visible, .icon-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(11,107,74,0.18);
}
.button:disabled, .icon-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ---------- Primário: ação de maior destaque (Criar Quadro) ---------- */
.btn-primary {
    background: linear-gradient(180deg, #50643c, #3f502e);
    color: #fff;
    box-shadow: 0 4px 14px rgba(11,107,74,0.22), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary:hover {
    background: linear-gradient(180deg, #5f7346, #4e5f3d);
    box-shadow: 0 6px 18px rgba(11,107,74,0.3), inset 0 1px 0 rgba(255,255,255,0.14);
    transform: translateY(-1px);
}

/* ---------- Ghost: ações secundárias (view toggle) ---------- */
.btn-ghost {
    background: transparent;
    color: #5b6b60;
    border-color: transparent;
}
.btn-ghost:hover { background: #eef3f0; color: #234; }
.btn-ghost.active {
    background: #fff;
    color: #0b6b4a;
    box-shadow: 0 2px 8px rgba(15,30,25,0.08);
}

/* ---------- Ícone puro: ações terciárias/utilitárias ---------- */
.icon-btn {
    width: 38px;
    padding: 0;
    background: #fff;
    color: #6b7a72;
    border: 1px solid #e2e5e3;
}
.icon-btn:hover {
    color: var(--primary-color, #0b6b4a);
    border-color: var(--primary-color, #0b6b4a);
    background: #f2f8f5;
}
.icon-btn-danger:hover {
    color: #c0392b;
    border-color: #eac8c2;
    background: #fdf1ef;
}

/* ---------- View toggle: trilho segmentado ---------- */
.view-toggle {
    display: inline-flex;
    gap: 2px;
    padding: 3px;
    background: #f0f3f1;
    border-radius: 11px;
}
.view-toggle .button { height: 32px; padding: 0 12px; box-shadow: none; }
.view-toggle .button.active { transform: none; }

/* ---------- Busca ---------- */
.search-wrap { position: relative; display: flex; align-items: center; }
.search-icon {
    position: absolute;
    left: 12px;
    font-size: 12px;
    color: #97a49d;
    pointer-events: none;
}
.filter-search {
    height: 38px;
    padding: 0 12px 0 32px;
    border-radius: 9px;
    border: 1px solid #e2e5e3;
    font-size: 13px;
    min-width: 190px;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.filter-search:focus-visible,
.filter-search:focus {
    outline: none;
    border-color: #0b6b4a;
    box-shadow: 0 0 0 3px rgba(11,107,74,0.14);
}
.filter-priority {
    height: 38px;
    padding: 0 10px;
    border-radius: 9px;
    border: 1px solid #e2e5e3;
    font-size: 13px;
    color: #444;
    background: #fff;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.filter-priority:focus-visible { outline: none; border-color: #0b6b4a; box-shadow: 0 0 0 3px rgba(11,107,74,0.14); }

.pa-group--mes { gap: 4px; }
.mes-atual-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 14px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    color: #1b3b2f;
    background: #f0f3f1;
    white-space: nowrap;
}
.mes-atual-label i { font-size: 12px; color: #6b7a72; }
.mes-atual-label.is-historico {
    background: #fdf3e3;
    color: #8a5a00;
}
.mes-atual-label.is-historico i { color: #b9820a; }
.mes-badge-historico {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    background: #f0b429;
    color: #4a3300;
    padding: 2px 7px;
    border-radius: 999px;
}

@media (max-width: 768px) {
    .pa-group--mes { width: 100%; justify-content: space-between; }
    .mes-atual-label { flex: 1; justify-content: center; }
}
.btn-google {
    background: #fff;
    color: #3c4043;
    border: 1px solid #dadce0;
}
.btn-google i { color: #4285F4; font-size: 14px; }
.btn-google:hover {
    background: #f7f8f8;
    border-color: #c7cacd;
    box-shadow: 0 2px 8px rgba(60,64,67,0.12);
}
.btn-google.is-conectado {
    background: #e8f5ee;
    color: #0b6b4a;
    border-color: #bfe3d1;
    cursor: default;
}
.btn-google.is-conectado i { color: #0b6b4a; }

#btn-google-sincronizar i { transition: transform .4s ease; }
#btn-google-sincronizar:active i { transform: rotate(180deg); }

@media (max-width: 1200px) {
    .pa-group--filters { border-left: none; padding-left: 0; }
}

/* Kanban */
.kanban-board { margin-top: 8px; }
.kanban-and-calendar {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-direction: column;
}
.kanban-board { flex:1; width:100%; margin-top: 8px; }

/* ==========================================================
   TIRA DE DIAS DA SEMANA — filtro rápido por dia dentro do Kanban
   ========================================================== */
.kanban-week-strip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #ececea;
    border-radius: 12px;
    padding: 8px 10px;
    margin-bottom: 14px;
    box-shadow: 0 6px 20px rgba(11,107,74,0.03);
}
.week-nav-btn {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    color: #4b5a52;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
}
.week-nav-btn:hover { background:#f2f7f4; border-color:#cfe4d8; color:#0b6b4a; }
.week-nav-btn:active { transform: scale(0.94); }
.week-nav-btn.week-nav-today { color:#0b6b4a; border-color:#dfeee0; }

.week-days {
    flex: 1 1 auto;
    display: flex;
    gap: 6px;
    min-width: 0;
}
.week-day {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 2px 7px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 9px;
    cursor: pointer;
    position: relative;
    transition: background .15s ease, border-color .15s ease, transform .1s ease;
}
.week-day:hover { background:#f5f8f6; }
.week-day:active { transform: scale(0.96); }
.week-day-abbr {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #8a9a8f;
    letter-spacing: .3px;
}
.week-day-num {
    font-size: 15px;
    font-weight: 700;
    color: #1b3b2f;
    line-height: 1.1;
}
.week-day-dot {
    position: absolute;
    bottom: 3px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #0b6b4a;
}
.week-day.is-today { background: #f2f7f4; border-color:#dfeee0; }
.week-day.is-today .week-day-num { color:#0b6b4a; }
.week-day.is-selected {
    background: linear-gradient(180deg, #50643c, #3f502e);
    border-color:#0a5d40;
    box-shadow: 0 4px 14px rgba(11,107,74,0.22);
}
.week-day.is-selected .week-day-abbr,
.week-day.is-selected .week-day-num { color:#fff; }
.week-day.is-selected .week-day-dot { background:#fff; }

.week-clear-btn {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 12px;
    background: #fdf1ef;
    border: 1px solid #f3d6d0;
    border-radius: 8px;
    color: #b5432f;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease;
    white-space: nowrap;
}
.week-clear-btn:hover { background:#fbe4e0; }
.week-clear-btn i { font-size: 11px; }

@media (max-width: 640px) {
    .kanban-week-strip { padding: 6px 6px; gap: 4px; }
    .week-nav-btn { width: 28px; height: 28px; }
    .week-nav-btn.week-nav-today span { display:none; }
    .week-day-abbr { font-size: 10px; }
    .week-day-num { font-size: 13px; }
    .week-clear-btn span { display:none; }
    .week-clear-btn { width: 32px; padding: 0; justify-content:center; }
}
@media (max-width: 400px) {
    .kanban-week-strip { flex-wrap: nowrap; }
    .week-days { gap: 3px; }
    .week-day { padding: 5px 0 6px; }
}

.kanban-columns { display:flex; gap:18px; align-items:flex-start; width:100%; }
.kanban-column { background:linear-gradient(180deg,#ffffff, #fbfbfb); border:1px solid #e8e8e8; border-radius:10px; width:340px; display:flex; flex-direction:column; max-height:72vh; box-shadow:0 6px 20px rgba(7,22,18,0.04); }
.kanban-column-header { padding:14px 12px; border-bottom:1px solid rgba(0,0,0,0.04); display:flex; justify-content:space-between; align-items:center; }
.kanban-column-header h3 { margin:0; font-size:16px; color:#0b6b4a; }
.kanban-cards { padding:12px; overflow:auto; min-height:160px; }
.kanban-card { background:linear-gradient(180deg,#ffffff,#fffefc); padding:12px; margin-bottom:12px; border-radius:10px; box-shadow:0 8px 26px rgba(12,28,20,0.06); cursor:grab; border-left:6px solid #ddd; transition:transform .12s ease, box-shadow .12s ease; }
.kanban-card:hover { transform:translateY(-6px); box-shadow:0 20px 44px rgba(12,28,20,0.10); }
.kanban-card h4 {
    margin: 0 0 8px 0;
    font-size: 15px;
    color: #123;
    font-weight: 600;
    text-wrap: auto;
}

.card-timer { display:flex; align-items:center; gap:8px; margin-bottom:8px; }
.btn-timer-toggle {
    width:28px; height:28px; border-radius:50%; border:none; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    background:#eef1ec; color:#3f502e; flex-shrink:0;
    transition:background .15s ease, color .15s ease, transform .1s ease;
}
.btn-timer-toggle i { font-size:11px; position:relative; left:1px; }
.btn-timer-toggle:hover { background:#dfe6d9; }
.btn-timer-toggle:active { transform:scale(0.92); }
.btn-timer-toggle.is-running { background:#3f502e; color:#fff; }
.btn-timer-toggle.is-running i { left:0; }
.btn-timer-toggle.is-running:hover { background:#2e3d21; }
.card-timer-display {
    font-size:12px; font-variant-numeric:tabular-nums; color:#6b6b6b;
    font-family:'Courier New', monospace; letter-spacing:0.5px;
}
.card-timer-display.is-running { color:#3f502e; font-weight:600; }
.card-meta {
    font-size: 12px;
    color: #6b6b6b !important;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Ícone de "tarefa recorrente" no título do card */
.card-recorrente-icon {
    color: #0b6b4a;
    font-size: 11px;
    margin-right: 6px;
}

/* Rodapé do card (data + prioridade) */
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 4px;
}
.card-meta-data {
    font-size: 12px;
    color: #6b6b6b;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.card-meta-data i {
    font-size: 11px;
    color: #9aa39a;
}

/* Badge de prioridade */
.card-tag {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.2px;
    line-height: 1.4;
    white-space: nowrap;
}
.card-tag-baixa {
    background: #eafaf1;
    color: #1e8449;
    border: 1px solid #bfe8cf;
}
.card-tag-normal {
    background: #fef9e7;
    color: #9a7d0a;
    border: 1px solid #f5e6a8;
}
.card-tag-alta {
    background: #fdedec;
    color: #a5281b;
    border: 1px solid #f5c6c0;
}
.kanban-column-footer { padding:12px; border-top:1px solid rgba(0,0,0,0.03); display:flex; justify-content:center; }
.btn-add-card { background:transparent; color:#0b6b4a; border:1px dashed #dfeee0; padding:8px 10px; border-radius:8px; }

/* Buttons: ver sistema de variantes definido no topo do arquivo (.btn-primary, .btn-ghost, .icon-btn, .btn-google) */

/* Recorrência: aviso de série + opção de aplicar às próximas ocorrências (modal) */
.field-hint {
    font-weight: 400;
    color: #8a9a8a;
    font-size: 12px;
}
.recorrencia-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 14px;
    background: #f6f8f4;
    border: 1px solid #e6e9e2;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #3f502e;
}
.recorrencia-info .checkbox-inline {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    cursor: pointer;
    margin: 0;
}
.recorrencia-info .checkbox-inline input {
    width: auto;
    margin: 0;
}

/* Modal (z-index fix + visual upgrade) */
.modal { position:fixed; left:0; top:0; right:0; bottom:0; display:flex; align-items:center; justify-content:center; z-index:1999999; }
.modal-backdrop { position:absolute; left:0; top:0; right:0; bottom:0; background:linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.55)); z-index:1999990; }
.modal-content { position:relative; background:#ffffff; padding:20px; width:560px; max-width:96%; border-radius:12px; z-index:1999995; box-shadow:0 24px 68px rgba(0,0,0,0.36); }
.modal-content .field { margin-bottom:10px; }
.modal-content label { display:block; font-weight:700; margin-bottom:6px; color:#233; }
.modal-content input[type="text"],
.modal-content textarea,
.modal-content select,
.modal-content input[type="date"],
.modal-content input[type="time"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e5e3;
    border-radius: 9px;
    font-size: 14px;
    color: #233;
    background: #fbfcfb;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.modal-content input[type="text"]:hover,
.modal-content textarea:hover,
.modal-content select:hover,
.modal-content input[type="date"]:hover,
.modal-content input[type="time"]:hover {
    border-color: #cfd6d2;
}
.modal-content input[type="text"]:focus,
.modal-content textarea:focus,
.modal-content select:focus,
.modal-content input[type="date"]:focus,
.modal-content input[type="time"]:focus {
    outline: none;
    border-color: #0b6b4a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(11,107,74,0.12);
}
.modal-content input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.55;
    filter: invert(32%) sepia(24%) saturate(638%) hue-rotate(93deg) brightness(93%) contrast(88%);
    transition: opacity .15s ease;
}
.modal-content input[type="time"]:hover::-webkit-calendar-picker-indicator,
.modal-content input[type="time"]:focus::-webkit-calendar-picker-indicator {
    opacity: 1;
}
.modal-content textarea {
    min-height: 90px;
    resize: vertical;
    line-height: 1.5;
    font-family: inherit;
}
.modal-actions { display:flex; gap:10px; justify-content:flex-end; margin-top:10px; }
.modal .button { padding:8px 14px; }

.kanban-card.dragging { opacity:0.5; transform:scale(0.98); }

/* Tarefa concluída: tempo travado, não pode mais ser alterado */
.kanban-card.is-travado { opacity:0.85; }
.btn-timer-toggle:disabled,
.btn-timer-toggle.is-travado {
    background:#e9e9e6;
    color:#8a8a86;
    cursor:not-allowed;
    opacity:0.85;
}
.btn-timer-toggle:disabled:hover,
.btn-timer-toggle.is-travado:hover { background:#e9e9e6; }
.card-timer-display.is-travado { color:#8a8a86; font-weight:600; }

/* =====================================================
   VISÃO "POR MÊS"
   ===================================================== */
#month-view { width: 100%; }
.month-list { display: flex; flex-direction: column; gap: 10px; }
.month-loading, .month-empty {
    padding: 34px 20px;
    text-align: center;
    color: #8a8a86;
    font-size: 14px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
}
.month-group {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(7,22,18,0.04);
    overflow: hidden;
}
.month-group-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}
.month-group-title {
    font-weight: 700;
    color: #1b3b2f;
    font-size: 15px;
    flex: 1;
    text-transform: capitalize;
}
.month-group-count {
    background: #eef6f0;
    color: #0b6b4a;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 12px;
}
.month-group-caret {
    color: #9aa39a;
    font-size: 13px;
    transition: transform .15s ease;
}
.month-group.is-open .month-group-caret { transform: rotate(180deg); }
.month-group.is-current-month .month-group-header { background: #f6fbf7; }
.month-group.is-current-month .month-group-title { color: #0b6b4a; }
.month-group-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease;
}
.month-group.is-open .month-group-body { max-height: 3000px; }
.month-task-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-top: 1px solid #f1f1ef;
    cursor: pointer;
    transition: background .12s ease;
}
.month-task-row:hover { background: #f8faf8; }
.month-task-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}
.month-task-date {
    font-size: 12px;
    color: #6b6b6b;
    font-family: 'Courier New', monospace;
    width: 40px;
    flex-shrink: 0;
}
.month-task-title {
    flex: 1;
    font-size: 14px;
    color: #223;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.month-task-recorrente {
    color: #0b6b4a;
    font-size: 12px;
    flex-shrink: 0;
}

/* Calendar adjustments */
#calendar-view { width: 100%; }
#tarefas-calendar { background:#fff; border:1px solid #e6e6e6; padding:12px; border-radius:8px; box-shadow:0 8px 26px rgba(11,107,74,0.04); width:100%; max-width:100%; }

/* =====================================================
   RESPONSIVIDADE
   ===================================================== */

/* Trava de segurança: nada nesta página deve criar scroll horizontal
   no documento inteiro. Qualquer overflow largo (calendário, colunas do
   kanban) fica contido dentro do próprio elemento, não vaza pro body. */
.tarefas-page,
.dashboard-content {
	/* IMPORTANTE: usar "clip" aqui, não "hidden". Com overflow-x:hidden,
	   o CSS força overflow-y a virar "auto" de verdade (escrever
	   "overflow-y:visible" do lado não evita isso) — e isso transforma
	   este elemento num scroll container próprio, que nunca rola de
	   verdade (não tem altura limitada), mas passa a ser a referência
	   do position:sticky dos filhos (.page-header, .kanban-and-calendar,
	   .kanban-week-strip), fazendo o sticky simplesmente não colar em
	   nada. "overflow-x:clip" bloqueia o overflow horizontal do mesmo
	   jeito, mas não aciona essa regra do overflow-y, preservando o
	   sticky calculado contra a janela de verdade. */
	overflow-x: clip;
	overflow-y: visible;
	max-width: 100%;
	/* O overflow-x:hidden antigo também zerava "de graça" o tamanho
	   mínimo automático deste item flex (regra do flexbox: item flex
	   nunca encolhe menor que o conteúdo intrínseco, a menos que
	   overflow não seja "visible"). Como "clip" não garante esse mesmo
	   efeito em todos os navegadores, declaramos min-width:0 direto,
	   sem depender de efeito colateral do overflow — é isso que deixa
	   o .dashboard-content encolher de verdade dentro do .dashboard-layout
	   em vez de esticar a página pra caber tudo. */
	min-width: 0;
}
.tarefas-page *,
.tarefas-page *::before,
.tarefas-page *::after {
	box-sizing: border-box;
}

/* O FullCalendar seta um min-width via JS direto no style da tabela
   (inline), que ganha do nosso width:100% em CSS. Isso é o que
   estava empurrando a página inteira pra lado. Forçamos min-width:0
   com !important pra ele conseguir encolher de verdade. */
.fc .fc-scrollgrid,
.fc .fc-scrollgrid table,
.fc .fc-scrollgrid-sync-table,
.fc table.fc-scrollgrid-sync-table,
.fc-view-harness,
.fc-view-harness table {
	min-width: 0 !important;
}
/* Se ainda assim não couber (telas muito estreitas), o scroll fica
   preso dentro da caixa do calendário, nunca na página. */
#tarefas-calendar {
	overflow-x: auto;
}

/* Telas médias (tablets grandes / notebooks pequenos) */
@media (max-width: 1100px) {
	.kanban-and-calendar { flex-direction:column; }
	#calendar-view { order: -1; }
}

/* Tablets — a partir daqui o header já empilha por completo (título em
   cima, ações embaixo, cada controle ocupando a linha toda). Isso evita
   a faixa instável de "quebra parcial" que cortava o .page-actions. */
@media (max-width: 900px) {
	.dashboard-layout { flex-direction:column; }
	.dashboard-content { padding:16px; }

	.page-header { padding:14px; flex-direction:column; align-items:stretch; }
	.page-title { text-align:center; margin-bottom:4px; }

	.page-actions { flex-direction:column; align-items:stretch; width:100%; gap:10px; }
	.pa-group { flex-wrap:wrap; width:100%; }
	.pa-divider { display:none; }
	.label-quad { display:none; }
	.select-quad-wrap { flex:1; }
	.select-quad { width:100%; }
	#btn-renomear-quadro, #btn-excluir-quadro { flex:0 0 auto; }
	#btn-criar-quadro { width:100%; }

	.view-toggle { width:100%; }
	.view-toggle .button { flex:1; }

	.pa-group--filters { width:100%; }
	.search-wrap { flex:1; }
	.filter-search { width:100%; min-width:0; }
	.filter-priority { flex:1; }

	.pa-group--google { width:100%; }
	.btn-google { flex:1; }

	.kanban-columns { overflow-x:auto; padding-bottom:10px; -webkit-overflow-scrolling:touch; scroll-snap-type:x proximity; }
	.kanban-column { width:280px; scroll-snap-align:start; flex-shrink:0; }
	.kanban-columns .kanban-column-add { width:200px; flex-shrink:0; }

	.modal-content { width:95%; max-height:90vh; overflow-y:auto; }
	#tarefas-calendar { width:100%; }

	.fc .fc-daygrid-day-frame { height:90px; min-height:90px; }
}

/* Celulares grandes: o header/page-actions já empilha desde 900px
   (ver bloco acima). Aqui só ficam os ajustes específicos de telas
   ainda mais estreitas — colunas do kanban, modal e calendário. */
@media (max-width: 768px) {
	/* Espaçamentos entre seções (header, tira de dias, quadro, calendário)
	   eram os mesmos do desktop — no celular isso vira um vão enorme entre
	   cada bloco. Aqui reduzimos só o "ar" entre seções, sem mexer no
	   espaçamento interno de cada card/coluna. */
	.page-header { margin-bottom: 12px; }
	.kanban-and-calendar { gap: 12px; }
	.kanban-board { margin-top: 4px; }
	.kanban-week-strip { margin-bottom: 8px; }
	.kanban-columns { gap: 10px; }
	.tarefas-page { padding: 4px 0 30px 0; }

	/* Empilha as colunas em vez de espremer lado a lado: cada uma
	   ocupa a largura toda e a rolagem volta a ser vertical (mais
	   natural no celular do que arrastar de lado). */
	.kanban-columns { display:flex; flex-direction:column; overflow-x:visible; scroll-snap-type:none; }
	.kanban-column { width:100%; flex-shrink:0; max-height:none; }
	.kanban-cards { max-height:50vh; overflow-y:auto; }
	.kanban-columns .kanban-column-add { width:100%; min-height:60px; }

	.field-row { flex-direction:column; gap:0; }
	.priority-picker { flex-wrap:wrap; }

	.modal-content { padding:16px; }
	.modal-actions { flex-wrap:wrap; }
	.modal-actions #modal-excluir { margin-right:0; margin-bottom:8px; flex:1 1 100%; order:3; }
	.modal-actions #modal-fechar,
	.modal-actions #modal-salvar { flex:1; min-width:0; }

	.fc .fc-toolbar { flex-direction:column; align-items:stretch; }
	.fc .fc-toolbar-chunk { display:flex; justify-content:center; }
	.fc .fc-toolbar-title { font-size:16px !important; text-align:center; }
	.fc .fc-daygrid-day-frame { height:76px; min-height:76px; }
	.fc .fc-daygrid-event { font-size:10.5px; }
	.fc .fc-col-header-cell-cushion { padding:6px 2px; }

	#tarefas-calendar.calendar-expanded { inset:16px; padding:12px; }
}

/* Celulares pequenos */
@media (max-width: 480px) {
	.dashboard-content { padding: 10px; }
	.page-header { padding: 10px; margin-bottom: 8px; }
	.kanban-and-calendar { gap: 8px; }
	.kanban-week-strip { margin-bottom: 6px; padding: 6px 4px; }
	.kanban-columns { gap: 8px; }
	.kanban-column-header { padding: 10px 10px; }
	.kanban-cards { padding: 8px; }

	.page-title { font-size:20px; }

	.color-picker { justify-content:center; }

	.fc .fc-col-header-cell-cushion { font-size:10px; padding:4px 2px; }
	.fc .fc-daygrid-day-number { font-size:11px; padding:4px; }
	.fc .fc-daygrid-day-frame { height:64px; min-height:64px; }
	.fc .fc-daygrid-event { padding:1px 4px; margin:1px 2px; }
	.fc .fc-button { padding:5px 10px !important; font-size:12px; }
}

/* Expanded calendar */
#tarefas-calendar.calendar-expanded { width:auto !important; transition:width .24s ease; }

/* Filters e estado do botão Google: ver sistema novo no topo do arquivo */

.day-badge { position:absolute; right:6px; top:6px; background:#0b6b4a; color:#fff; padding:2px 6px; border-radius:12px; font-size:12px; z-index:20; }

/* =====================================================
   FULLCALENDAR - Tema Shineweb/CR (cores do site)
   ===================================================== */

/* Toolbar (título + botões de navegação) */
.fc .fc-toolbar {
    margin-bottom: 16px !important;
    flex-wrap: wrap;
    gap: 10px;
}
.fc .fc-toolbar-title {
    font-size: 19px !important;
    font-weight: 700;
    color: var(--text-color);
    text-transform: capitalize;
}
.fc .fc-button {
    background: #f2f2f2 !important;
    border: none !important;
    color: var(--text-color) !important;
    box-shadow: none !important;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 13px;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    transition: 0.2s ease;
}
.fc .fc-button:hover {
    background: #e6e6e6 !important;
    color: var(--text-color) !important;
}
.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
    background: var(--primary-color) !important;
    color: #fff !important;
}
.fc .fc-today-button {
    background: var(--primary-color) !important;
    color: #fff !important;
}
.fc .fc-today-button:hover {
    background: var(--accent-color) !important;
}
.fc .fc-today-button:disabled {
    opacity: 0.5;
}
.fc .fc-prev-button,
.fc .fc-next-button {
    background: transparent !important;
    color: var(--primary-color) !important;
    font-size: 15px;
    padding: 6px 10px !important;
}
.fc .fc-prev-button:hover,
.fc .fc-next-button:hover {
    background: rgba(63, 80, 46, 0.1) !important;
}

/* Grade do calendário */
.fc {
    font-family: 'Arial', sans-serif;
}
.fc .fc-scrollgrid {
    border-radius: 8px;
    overflow: hidden;
    border-color: #e8e8e6 !important;
}
.fc-theme-standard td,
.fc-theme-standard th {
    border-color: #ececea !important;
}
.fc .fc-col-header-cell {
    background: #f7f7f5;
    padding: 8px 0;
}
.fc .fc-col-header-cell-cushion {
    color: #666;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 6px 4px;
}
.fc .fc-daygrid-day-number {
    color: var(--text-color);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 8px;
}
.fc .fc-daygrid-day-frame {
    height: 110px;
    min-height: 110px;
    overflow: hidden;
}
.fc .fc-scroller {
    overflow: visible !important;
    height: auto !important;
}
.fc .fc-scroller-harness {
    overflow: visible !important;
    width: 100% !important;
}
.fc .fc-daygrid-body,
.fc .fc-scrollgrid-sync-table,
.fc .fc-col-header,
.fc table.fc-scrollgrid-sync-table {
    width: 100% !important;
    height: auto !important;
}
.fc .fc-scrollgrid,
.fc .fc-scrollgrid table {
    width: 100% !important;
    table-layout: fixed !important;
}
.fc .fc-daygrid-body table {
    width: 100% !important;
}
.fc .fc-daygrid-day,
.fc .fc-daygrid-row {
    height: auto !important;
}
.fc .fc-day-other .fc-daygrid-day-number {
    color: #bbb;
    font-weight: 400;
}
.fc .fc-day-today {
    background: rgba(63, 80, 46, 0.07) !important;
}
.fc .fc-day-today .fc-daygrid-day-number {
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 4px;
}
.fc .fc-daygrid-day:hover {
    background: rgba(63, 80, 46, 0.04);
    cursor: pointer;
}

/* Eventos (tarefas) */
.fc .fc-daygrid-event {
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    padding: 2px 6px;
    font-size: 11.5px;
    font-weight: 600;
    margin: 1px 4px;
    color: #fff;
}
.fc .fc-daygrid-event:hover {
    background: var(--accent-color);
}
.fc .fc-event-title {
    color: inherit;
    padding: 0;
}
.fc .fc-daygrid-event-dot {
    display: none;
}
.fc .fc-daygrid-more-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 11px;
}

/* Badge de contagem de tarefas por dia (gerado via JS) */
#tarefas-calendar .day-badge {
    background: var(--primary-color) !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Calendário expandido (botão "Expandir Calendário") */
#tarefas-calendar.calendar-expanded {
    position: fixed;
    inset: 40px;
    z-index: 999999;
    background: #fff;
    padding: 20px 64px 20px 20px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow-y: auto;
}

/* Fundo escurecido atrás do calendário expandido — clicável para fechar */
#calendar-expand-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 16, 0.55);
    z-index: 999998;
    cursor: pointer;
}
body.tarefas-calendar-expandido #calendar-expand-backdrop { display: block; }

/* Botão de fechar: só existe visualmente quando o calendário está expandido */
button.calendar-close-btn {
    display: none;
    position: fixed;
    top: 52px;
    right: 56px;
    z-index: 1000000;
    background: #fff;
}
body.tarefas-calendar-expandido button.calendar-close-btn { display: inline-flex; }

/* =====================================================
   MODAL DE TAREFA - versão mais intuitiva
   ===================================================== */

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.modal-header h3 {
    margin: 0;
}
.modal-close-x {
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 6px;
    transition: 0.15s ease;
}
.modal-close-x:hover {
    background: #f2f2f2;
    color: var(--text-color);
}

.field .req {
    color: #c0392b;
}
.field-error {
    display: none;
    font-size: 12px;
    color: #c0392b;
    font-weight: 600;
}
.field.has-error input,
.field.has-error textarea {
    border-color: #c0392b !important;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}
.field.has-error .field-error {
    display: block;
}
.field.has-error {
    animation: campo-shake 0.3s ease;
}
@keyframes campo-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.field-row {
    display: flex;
    gap: 12px;
}
.field-row .field {
    flex: 1;
    min-width: 0;
}

/* Seletor de prioridade (pills) */
.priority-picker {
    display: flex;
    gap: 8px;
}
.priority-opt {
    flex: 1;
    border: 1.5px solid #ddd;
    background: #fff;
    border-radius: 6px;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.15s ease;
    color: #888;
}
.priority-opt:hover {
    border-color: #bbb;
}
.priority-opt.priority-baixa.active {
    background: #eafaf1;
    border-color: #27ae60;
    color: #1e8449;
}
.priority-opt.priority-normal.active {
    background: #fef9e7;
    border-color: #f1c40f;
    color: #9a7d0a;
}
.priority-opt.priority-alta.active {
    background: #fdedec;
    border-color: #c0392b;
    color: #a5281b;
}

/* Paleta de cores */
.color-picker {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, border-color 0.15s ease;
}
.color-swatch:hover {
    transform: scale(1.12);
}
.color-swatch.selected {
    border-color: var(--text-color);
    transform: scale(1.12);
}
.color-swatch-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    background: repeating-conic-gradient(#ccc 0% 25%, #fff 0% 50%) 50% / 10px 10px;
    position: relative;
    overflow: hidden;
}
#modal-tarefa .color-swatch-custom,
.modal-content .color-swatch-custom {
    margin-bottom: 0;
}
.color-swatch-custom input[type="color"] {
    position: absolute;
    inset: -4px;
    width: 40px;
    height: 40px;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 0;
}

/* Ações do modal reorganizadas: Excluir à esquerda, Cancelar/Salvar à direita */
.modal-actions {
    display: flex;
    align-items: center;
}
.modal-actions #modal-excluir {
    flex: 0 0 auto;
    margin-right: auto;
}
.modal-actions #modal-fechar,
.modal-actions #modal-salvar {
    flex: 0 0 auto;
    min-width: 100px;
}
.modal-actions .btn-secondary {
    background: #f2f2f2;
    color: var(--text-color);
}
.modal-actions .btn-secondary:hover {
    background: #e6e6e6;
}
.modal-actions .btn-danger {
    background: transparent;
    color: #c0392b;
    border: 1.5px solid #f0d4d1;
}
.modal-actions .btn-danger:hover {
    background: #fdedec;
    border-color: #c0392b;
}
.modal-actions #modal-excluir.is-hidden {
    display: none;
}

/* =====================================================
   MODAL DE TAREFA - REDESIGN (escopado em #modal-tarefa para
   não afetar outros modais do sistema que reusam .modal/.field)
   ===================================================== */

/* Container: header fixo, corpo com scroll, rodapé fixo */
#modal-tarefa .modal-content {
    width: min(560px, 100%);
    max-height: min(88vh, 760px);
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(11,30,20,0.22);
}
#modal-tarefa .modal-header {
    flex: 0 0 auto;
    margin-bottom: 0;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #eef1ec;
}
#modal-tarefa .modal-header h3 {
    font-size: 17px;
    color: #1b3b2f;
}
#modal-tarefa .modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 20px 24px;
    -webkit-overflow-scrolling: touch;
}
#modal-tarefa .modal-actions {
    flex: 0 0 auto;
    padding: 14px 24px;
    border-top: 1px solid #eef1ec;
    background: #fff;
}

/* Rótulos discretos ("eyebrow"), consistentes em todos os campos */
#modal-tarefa .modal-body .field > label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: #82907f;
    margin-bottom: 6px;
}

/* Campo Título: tratamento "hero", sem borda de caixa, foco em destaque */
#modal-tarefa .field-titulo {
    margin-bottom: 16px;
}
#modal-tarefa .input-titulo {
    border: none;
    border-bottom: 2px solid #e6e9e2;
    border-radius: 0;
    padding: 6px 2px 10px;
    font-size: 21px;
    font-weight: 700;
    color: #1b3b2f;
    background: transparent;
}
#modal-tarefa .input-titulo::placeholder {
    color: #a9b6a6;
    font-weight: 600;
}
#modal-tarefa .input-titulo:focus {
    outline: none;
    border-bottom-color: #3f502e;
    box-shadow: none;
}
#modal-tarefa .field-titulo.has-error .input-titulo {
    border-bottom-color: #c0392b;
}

/* Cartão de status do cronômetro */
#modal-tarefa .timer-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: #f6f8f4;
    border: 1px solid #e6e9e2;
    transition: background .2s ease, border-color .2s ease;
}
#modal-tarefa .timer-card .btn-timer-toggle {
    width: 42px;
    height: 42px;
    font-size: 15px;
    flex-shrink: 0;
}
#modal-tarefa .timer-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
#modal-tarefa .timer-card-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: #82907f;
}
#modal-tarefa .timer-card .card-timer-display {
    font-size: 22px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    color: #1b3b2f;
}
#modal-tarefa .timer-card.is-running {
    background: #eaf6ec;
    border-color: #bfe0c0;
}
#modal-tarefa .timer-card.is-running .card-timer-display {
    color: #1e6b3f;
}
#modal-tarefa .timer-card.is-running .timer-card-label::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    animation: modal-timer-pulse 1.6s ease-out infinite;
}
#modal-tarefa .timer-card.is-travado {
    background: #f2f2ef;
    border-color: #e2e2de;
}
#modal-tarefa .timer-card.is-travado .card-timer-display {
    color: #8a8a86;
}
@keyframes modal-timer-pulse {
    0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.55); }
    70% { box-shadow: 0 0 0 7px rgba(46,204,113,0); }
    100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
@media (prefers-reduced-motion: reduce) {
    #modal-tarefa .timer-card.is-running .timer-card-label::before { animation: none; }
}

/* Toques finais em prioridade/cor/rodapé dentro do modal */
#modal-tarefa .priority-opt {
    padding: 10px 0;
}
#modal-tarefa .color-swatch {
    width: 32px;
    height: 32px;
}
#modal-tarefa .modal-actions #modal-salvar,
#modal-tarefa .modal-actions #modal-fechar {
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
}
#modal-tarefa .modal-actions #modal-excluir {
    border-radius: 10px;
    padding: 10px 16px;
}

/* Responsivo: modal em folha (bottom-sheet) no mobile */
@media (max-width: 640px) {
    #modal-tarefa.modal {
        padding: 0;
        align-items: flex-end;
    }
    #modal-tarefa .modal-content {
        width: 100%;
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
        animation: modal-sheet-in .22s ease-out;
    }
    #modal-tarefa .modal-header {
        padding: 16px 18px 14px;
    }
    #modal-tarefa .modal-body {
        padding: 16px 18px;
    }
    #modal-tarefa .modal-actions {
        padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
        flex-wrap: wrap;
    }
    #modal-tarefa .modal-actions #modal-excluir {
        order: 3;
        flex: 1 1 100%;
        margin-right: 0;
        margin-top: 8px;
    }
    #modal-tarefa .modal-actions #modal-fechar,
    #modal-tarefa .modal-actions #modal-salvar {
        flex: 1 1 0;
    }
    #modal-tarefa .input-titulo {
        font-size: 19px;
    }
}
@keyframes modal-sheet-in {
    from { transform: translateY(24px); opacity: 0.4; }
    to { transform: translateY(0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    #modal-tarefa .modal-content { animation: none; }
}

/* =====================================================
   ÍCONES (icon-btn) - cabeçalho da página e colunas
   ===================================================== */
.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #e2e2e2;
    background: #fff;
    color: #5b6b60;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
}
.icon-btn:hover {
    background: #eef6f0;
    border-color: #cfe6d7;
    color: var(--primary-color, #0b6b4a);
    transform: translateY(-1px);
}
.icon-btn:active {
    transform: translateY(0);
}
.icon-btn-danger {
    color: #b5453a;
}
.icon-btn-danger:hover {
    background: #fdedec;
    border-color: #f0c6c1;
    color: #c0392b;
}

/* Ícones dentro das colunas (renomear/excluir coluna) */
.col-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateX(4px);
    transition: opacity .15s ease, transform .15s ease;
}
.kanban-column-header:hover .col-actions {
    opacity: 1;
    transform: translateX(0);
}
.col-actions .icon-btn {
    width: 28px;
    height: 28px;
    font-size: 12px;
    border-color: transparent;
    background: transparent;
}
.col-actions .icon-btn:hover {
    background: #eef6f0;
    border-color: #cfe6d7;
}
.col-actions .icon-btn-danger:hover {
    background: #fdedec;
    border-color: #f0c6c1;
}

/* =====================================================
   COLUNA "+ Nova coluna"
   ===================================================== */
.kanban-column-add {
    width: 220px;
    min-height: 120px;
    background: transparent;
    border: 2px dashed #d8e3da;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .15s ease, background .15s ease;
}
.kanban-column-add:hover {
    border-color: var(--primary-color, #0b6b4a);
    background: rgba(11,107,74,0.03);
}
.btn-add-column {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: var(--primary-color, #0b6b4a);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}
.btn-add-column i {
    font-size: 13px;
}
.btn-add-column:hover {
    background: rgba(11,107,74,0.08);
    color: var(--accent-color, #0b6b4a);
}