/*
 * alltec_ui.css
 * CSS base oficial do design system Alltec UI.
 *
 * Regras:
 * - Este arquivo define a identidade visual do ERP Alltec.
 * - Derivado de static/css/programacao_projetos.css (referência visual principal).
 * - NÃO aplicar em páginas existentes sem migração planejada.
 * - NÃO criar CSS visual paralelo que reimplemente classes deste arquivo.
 * - Leitura obrigatória: docs/frontend_style_guide.md
 */

/* =============================================================================
   1. VARIÁVEIS — PALETA OFICIAL
   ============================================================================= */

:root {
    /* Fundo de página */
    --alltec-bg:              #e5edf8;
    --alltec-bg-soft:         #f3f7fb;
    --alltec-panel:           #ffffff;

    /* Bordas — mínimos de contraste: nunca usar borda mais clara que estes valores
       sobre fundo branco (ver frontend_style_guide.md, seção "Contraste mínimo") */
    --alltec-border:          #b3c6dc;
    --alltec-border-strong:   #8fadcd;

    /* Texto — --alltec-muted deve manter contraste >= 7:1 sobre branco (texto 10-11px) */
    --alltec-text:            #14314d;
    --alltec-muted:           #3d5573;
    --alltec-label:           #243f5e;

    /* Cor primária */
    --alltec-primary:         #1d6ec7;
    --alltec-primary-deep:    #134f90;

    /* Cores semânticas */
    --alltec-danger:          #b42318;
    --alltec-warning:         #b7791f;
    --alltec-success:         #0f766e;
    --alltec-info:            #1d6ec7;

    /* Tabela */
    --alltec-table-header:    linear-gradient(180deg, #2e78c7, #14518d);
    --alltec-table-line:      #d7e4f3;
    --alltec-cell-alt:        #f6faff;
    --alltec-cell-hover:      #ebf4ff;
    --alltec-cell-readonly:   #f7f9fc;
    --alltec-dirty:           #fff7d6;
    --alltec-dirty-strong:    #fff0a8;
    --alltec-selected:        #dbeafe;
}


/* =============================================================================
   2. BASE DE PÁGINA
   ============================================================================= */

.alltec-page {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 18%, rgba(121, 182, 236, 0.22), transparent 42%),
        radial-gradient(circle at 88% 12%, rgba(29, 110, 199, 0.16), transparent 36%),
        linear-gradient(160deg, #f3f7fb 0%, var(--alltec-bg) 48%, #eaf1f9 100%);
    color: var(--alltec-text);
    padding: 12px 10px 18px;
    box-sizing: border-box;
}

.alltec-shell {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* =============================================================================
   3. CARDS
   ============================================================================= */

.alltec-card,
.alltec-toolbar-card,
.alltec-sheet-card,
.alltec-panel-card,
.alltec-empty-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
    border: 1px solid rgba(123, 167, 216, 0.36);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(17, 57, 109, 0.12);
}

.alltec-card {
    padding: 14px 16px;
}

.alltec-toolbar-card {
    padding: 8px 10px;
}

.alltec-sheet-card {
    margin-top: 8px;
    padding: 10px;
}

.alltec-panel-card {
    padding: 10px 12px;
}

.alltec-empty-card {
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    color: var(--alltec-muted);
    min-height: 120px;
}


/* =============================================================================
   4. TOOLBARS
   ============================================================================= */

.alltec-toolbar {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.alltec-toolbar-top,
.alltec-toolbar-actions,
.alltec-toolbar-status {
    display: flex;
    align-items: center;
    gap: 5px 7px;
    flex-wrap: wrap;
}

.alltec-toolbar-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.alltec-feedback {
    font-size: 11px;
    font-weight: 700;
    color: var(--alltec-primary-deep);
    min-height: 16px;
}

.alltec-selection {
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    color: var(--alltec-muted);
    min-height: 16px;
}


/* =============================================================================
   5. BOTÕES
   ============================================================================= */

.alltec-btn {
    appearance: none;
    border: 1px solid var(--alltec-border-strong);
    background: linear-gradient(180deg, #f7fbff, #dceaf9);
    color: var(--alltec-text);
    border-radius: 10px;
    padding: 5px 14px;
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.05;
    cursor: pointer;
    transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    white-space: nowrap;
}

.alltec-btn:hover:not([disabled]) {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(20, 81, 141, 0.14);
}

.alltec-btn:active:not([disabled]) {
    transform: translateY(0);
    box-shadow: none;
}

.alltec-btn[disabled],
.alltec-btn.is-disabled {
    opacity: 0.46;
    cursor: not-allowed;
    pointer-events: none;
}

/* Primário */
.alltec-btn.is-primary {
    background: linear-gradient(180deg, #2b76c8, #14528f);
    border-color: #14528f;
    color: #fff;
}

.alltec-btn.is-primary:hover:not([disabled]) {
    box-shadow: 0 10px 20px rgba(20, 81, 141, 0.28);
}

/* Secundário */
.alltec-btn.is-secondary {
    background: linear-gradient(180deg, #f2f6fb, #e4edf8);
    border-color: var(--alltec-border-strong);
    color: var(--alltec-text);
}

/* Danger */
.alltec-btn.is-danger {
    background: linear-gradient(180deg, #f87171, #b42318);
    border-color: #b42318;
    color: #fff;
}

.alltec-btn.is-danger:hover:not([disabled]) {
    box-shadow: 0 8px 16px rgba(180, 35, 24, 0.22);
}

/* Ghost */
.alltec-btn.is-ghost {
    background: transparent;
    border-color: transparent;
    color: var(--alltec-muted);
}

.alltec-btn.is-ghost:hover:not([disabled]) {
    background: rgba(29, 110, 199, 0.07);
    border-color: var(--alltec-border);
    color: var(--alltec-text);
}

/* Ícone */
.alltec-icon-btn {
    appearance: none;
    border: 1px solid transparent;
    background: transparent;
    color: var(--alltec-muted);
    border-radius: 8px;
    padding: 4px 6px;
    font: inherit;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 120ms ease, color 120ms ease;
}

.alltec-icon-btn:hover {
    background: rgba(29, 110, 199, 0.08);
    color: var(--alltec-primary);
    border-color: var(--alltec-border);
}

/* Loading state */
.alltec-btn.is-loading {
    pointer-events: none;
    opacity: 0.72;
    position: relative;
}

.alltec-btn.is-loading::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: alltec-spin 0.7s linear infinite;
    margin-left: 4px;
    flex-shrink: 0;
}

@keyframes alltec-spin {
    to { transform: rotate(360deg); }
}


/* =============================================================================
   6. ABAS (TABS)
   ============================================================================= */

.alltec-tabs {
    display: inline-flex;
    gap: 4px;
    padding: 2px;
    border-radius: 10px;
    background: rgba(29, 110, 199, 0.08);
    border: 1px solid rgba(29, 110, 199, 0.16);
}

.alltec-tab {
    appearance: none;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--alltec-muted);
    padding: 5px 10px;
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.05;
    cursor: pointer;
    transition: background 140ms ease, color 140ms ease, box-shadow 140ms ease;
    white-space: nowrap;
}

.alltec-tab:hover:not(.is-active) {
    background: rgba(29, 110, 199, 0.10);
    color: var(--alltec-primary);
}

.alltec-tab.is-active {
    background: var(--alltec-table-header);
    color: #fff;
    box-shadow: 0 6px 16px rgba(20, 81, 141, 0.22);
}

/* Painel controlado por aba */
.alltec-panel {
    display: none;
}

.alltec-panel.is-active {
    display: block;
}


/* =============================================================================
   7. BUSCA E FILTROS
   ============================================================================= */

.alltec-search {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    margin-left: auto;
    min-width: min(280px, 100%);
    padding: 5px 8px;
    border-radius: 10px;
    border: 1px solid var(--alltec-border-strong);
    background: rgba(255, 255, 255, 0.94);
}

.alltec-search span {
    white-space: nowrap;
    color: var(--alltec-muted);
    flex-shrink: 0;
}

.alltec-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: inherit;
    font: inherit;
}

.alltec-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid var(--alltec-border);
    background: rgba(255, 255, 255, 0.88);
}

.alltec-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    padding: 5px 8px;
    border-radius: 10px;
    border: 1px solid var(--alltec-border-strong);
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.alltec-check input[type="checkbox"] {
    accent-color: var(--alltec-primary);
}

/* Inputs e campos de formulário (guia de estilo, seção 24) */
.alltec-input {
    border: 1px solid var(--alltec-border-strong);
    border-radius: 8px;
    padding: 5px 8px;
    font: inherit;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--alltec-text);
    background: #ffffff;
    box-sizing: border-box;
    width: stretch;
}

.alltec-input:focus {
    outline: 2px solid rgba(29, 110, 199, 0.35);
    outline-offset: 0;
    border-color: var(--alltec-primary);
}

.alltec-input.is-readonly {
    background: var(--alltec-cell-readonly);
    cursor: default;
}

.alltec-input.is-invalid { border-color: var(--alltec-danger); }
.alltec-input.is-valid { border-color: var(--alltec-success); }

.alltec-field {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
}

.alltec-field__label {
    font-size: 11px;
    font-weight: 700;
    color: var(--alltec-label);
}

.alltec-field__required { color: var(--alltec-danger); }

.alltec-field__hint {
    margin: 2px 0 0;
    font-size: 10px;
    color: var(--alltec-muted);
}

/* Título de seção de formulário — componente oficial de hierarquia visual.
   Obrigatório em telas com seções de campos: deve se destacar dos labels
   (maior, mais escuro e com barra de acento primária). */
.alltec-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--alltec-primary-deep);
    border-bottom: 2px solid rgba(29, 110, 199, 0.28);
    padding-bottom: 5px;
}

.alltec-section-title::before {
    content: "";
    width: 4px;
    height: 14px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--alltec-primary), var(--alltec-primary-deep));
    flex-shrink: 0;
}

/* Seção de formulário — fundo tingido de propósito para o campo editável
   (branco puro) saltar visualmente. Não usar fundo branco em seção que
   contenha inputs. Ver frontend_style_guide.md 4.1. */
.alltec-form-section {
    padding: 11px 12px 12px;
    border: 1px solid var(--alltec-border-strong);
    border-radius: 12px;
    background: linear-gradient(180deg, #dde7f3 0%, #d2dfee 100%);
}


/* =============================================================================
   8. TABELAS
   ============================================================================= */

/* Wrapper scrollável */
.alltec-table-wrap {
    overflow: auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Sheet scroll com altura responsiva */
.alltec-sheet-scroll {
    overflow: auto;
    height: calc(100vh - 300px);
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Shell da grade */
.alltec-sheet-shell {
    border: 1px solid var(--alltec-border);
    border-radius: 12px;
    background: var(--alltec-panel);
    overflow: hidden;
}

/* Tabela genérica Alltec */
.alltec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
    color: var(--alltec-text);
}

.alltec-table th,
.alltec-table td {
    border: 1px solid var(--alltec-table-line);
    padding: 5px 7px;
    vertical-align: middle;
}

.alltec-table th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--alltec-table-header);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: normal;
    line-height: 1.08;
    padding: 7px 6px;
}

.alltec-table tbody tr:nth-child(even) td {
    background: var(--alltec-cell-alt);
}

.alltec-table tbody tr:hover td {
    background: var(--alltec-cell-hover);
}

/* Grade planilha (mais densa, max-content) */
.alltec-sheet {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
    font-size: 11px;
}

.alltec-sheet th,
.alltec-sheet td {
    border: 1px solid var(--alltec-table-line);
}

.alltec-sheet th {
    overflow: visible;
    position: sticky !important;
    top: 0 !important;
    z-index: 2;
    padding: 7px 6px;
    background: var(--alltec-table-header);
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: normal;
    line-height: 1.08;
}

.alltec-sheet td {
    padding: 0;
    min-width: 90px;
    background-clip: padding-box;
}

.alltec-sheet tbody tr:nth-child(even) td {
    background: var(--alltec-cell-alt);
}

.alltec-sheet tbody tr:hover td {
    background: var(--alltec-cell-hover);
}

/* Estado: linha selecionada */
.alltec-row-selected td {
    background: var(--alltec-selected) !important;
}

/* Estado: célula dirty (edição pendente) */
.alltec-cell-dirty {
    background: var(--alltec-dirty) !important;
}

/* Estado: célula readonly */
.alltec-cell-readonly {
    background: var(--alltec-cell-readonly) !important;
    cursor: default;
}

/* Coluna fixada — compatível com filtrar_tabela.js */
.alltec-sheet th.filtro-coluna-fixada,
.alltec-sheet td.filtro-coluna-fixada,
.alltec-table th.filtro-coluna-fixada,
.alltec-table td.filtro-coluna-fixada {
    position: sticky;
    left: 0;
    z-index: 3;
    box-shadow: 1px 0 0 rgba(123, 167, 216, 0.75), 8px 0 18px rgba(17, 57, 109, 0.08);
}

.alltec-sheet td.filtro-coluna-fixada,
.alltec-table td.filtro-coluna-fixada {
    z-index: 1;
}


/* =============================================================================
   9. ALERTAS E TOASTS
   ============================================================================= */

.alltec-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--alltec-border);
    background: var(--alltec-bg-soft);
    font-size: 12px;
    color: var(--alltec-text);
    line-height: 1.4;
}

.alltec-alert.is-success {
    background: #f0fdf4;
    border-color: #86efac;
    color: #14532d;
}

.alltec-alert.is-danger {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #7f1d1d;
}

.alltec-alert.is-warning {
    background: #fffbeb;
    border-color: #fcd34d;
    color: #78350f;
}

.alltec-alert.is-info {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #1e3a5f;
}

.alltec-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9000;
    min-width: 260px;
    max-width: 380px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(20, 49, 77, 0.94);
    color: #f1f5f9;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: alltec-toast-in 0.24s ease-out;
    backdrop-filter: blur(6px);
}

.alltec-toast.is-success { border-left: 4px solid #4ade80; }
.alltec-toast.is-danger  { border-left: 4px solid #f87171; }
.alltec-toast.is-warning { border-left: 4px solid #fbbf24; }
.alltec-toast.is-info    { border-left: 4px solid #60a5fa; }

@keyframes alltec-toast-in {
    from { opacity: 0; transform: translateY(12px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}


/* =============================================================================
   10. MODAIS
   ============================================================================= */

.alltec-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(14, 30, 50, 0.48);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.alltec-modal-backdrop.is-hidden {
    display: none;
}

.alltec-modal-card {
    background: linear-gradient(180deg, #fff, #f8fbff);
    border: 1px solid rgba(123, 167, 216, 0.40);
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(17, 57, 109, 0.20);
    width: 100%;
    max-width: 680px;
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    animation: alltec-modal-in 0.22s ease-out;
    overflow: hidden;
}

.alltec-modal-card--wide { max-width: 960px; }
.alltec-modal-card--narrow { max-width: 480px; }

@keyframes alltec-modal-in {
    from { opacity: 0; transform: translateY(10px) scale(0.985); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.alltec-modal-header {
    padding: 16px 20px 12px;
    border-bottom: 1px solid var(--alltec-border);
    position: relative;
    flex-shrink: 0;
}

.alltec-modal-kicker {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--alltec-muted);
    margin-bottom: 3px;
}

.alltec-modal-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--alltec-text);
    line-height: 1.15;
}

.alltec-modal-subtitle {
    margin: 4px 0 0;
    font-size: 11px;
    color: var(--alltec-muted);
}

.alltec-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
}

.alltec-modal-body {
    padding: 16px 20px;
    overflow-y: auto;
    flex: 1 1 auto;
    font-size: 12px;
}

.alltec-modal-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--alltec-border);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-shrink: 0;
}


/* =============================================================================
   11. CHEVRONS / EXPANDERS
   ============================================================================= */

.alltec-chevron {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent currentColor;
    transition: transform 200ms ease;
    vertical-align: middle;
    flex-shrink: 0;
}

.alltec-chevron.is-open {
    transform: rotate(90deg);
}

.alltec-chevron-btn {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--alltec-muted);
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px;
    border-radius: 6px;
    transition: background 120ms ease, color 120ms ease;
}

.alltec-chevron-btn:hover {
    background: rgba(29, 110, 199, 0.07);
    color: var(--alltec-primary);
}


/* =============================================================================
   12. EMPTY STATE / STATUS / BADGE
   ============================================================================= */

.alltec-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px 16px;
    text-align: center;
    color: var(--alltec-muted);
}

.alltec-empty__icon {
    font-size: 28px;
    opacity: 0.52;
    display: block;
}

.alltec-empty__title {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--alltec-text);
}

.alltec-empty__desc {
    margin: 0;
    font-size: 11px;
    color: var(--alltec-muted);
    max-width: 320px;
}

.alltec-status {
    font-size: 11px;
    color: var(--alltec-muted);
}

.alltec-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    background: rgba(29, 110, 199, 0.12);
    color: var(--alltec-primary-deep);
    border: 1px solid rgba(29, 110, 199, 0.22);
}

.alltec-badge.is-success {
    background: #dcfce7;
    color: #14532d;
    border-color: #86efac;
}

.alltec-badge.is-danger {
    background: #fee2e2;
    color: #7f1d1d;
    border-color: #fca5a5;
}

.alltec-badge.is-warning {
    background: #fef9c3;
    color: #78350f;
    border-color: #fcd34d;
}

.alltec-badge.is-muted {
    background: #f1f5f9;
    color: var(--alltec-muted);
    border-color: var(--alltec-border);
}


/* =============================================================================
   13. RESIZER VERTICAL
   ============================================================================= */

.alltec-resizer-vertical {
    width: 100%;
    height: 7px;
    cursor: ns-resize;
    background: linear-gradient(180deg,
        rgba(173, 197, 223, 0.35) 0%,
        rgba(173, 197, 223, 0.55) 50%,
        rgba(173, 197, 223, 0.35) 100%);
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 120ms ease;
}

.alltec-resizer-vertical:hover {
    background: linear-gradient(180deg,
        rgba(29, 110, 199, 0.18) 0%,
        rgba(29, 110, 199, 0.30) 50%,
        rgba(29, 110, 199, 0.18) 100%);
}

.alltec-resizer-vertical::after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    border-radius: 1px;
    background: rgba(29, 110, 199, 0.38);
}


/* =============================================================================
   14. LOADING — ALIASES COMPATÍVEIS COM AppLoadingOverlay
   (NÃO duplica implementação — apenas aliases de conveniência)
   ============================================================================= */

/*
 * AppLoadingOverlay já implementa .app-loading-overlay em app_loading_overlay.css.
 * Este bloco NÃO reimplementa o overlay. Define apenas classes utilitárias
 * de conveniência para indicadores de carregamento inline (não-fullscreen).
 */

/* Spinner inline compacto */
.alltec-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(29, 110, 199, 0.24);
    border-top-color: var(--alltec-primary);
    border-radius: 50%;
    animation: alltec-spin 0.7s linear infinite;
    flex-shrink: 0;
}

.alltec-spinner--sm {
    width: 10px;
    height: 10px;
    border-width: 1.5px;
}

.alltec-spinner--lg {
    width: 22px;
    height: 22px;
    border-width: 3px;
}

/* Estado de carregamento de linha de tabela */
.alltec-loading-row td {
    opacity: 0.48;
    pointer-events: none;
}


/* =============================================================================
   FIM — alltec_ui.css
   Versão 1.0 — Maio 2026
   ============================================================================= */
