/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* /Components/Pages/EscolaPage/MensagemThread.razor.rz.scp.css */
.msgt-panel[b-fttq6l982e] {
    --secretaria: #64748B;
    --professor: #0D9488;
    --aluno: #EA580C;
    --primary: #4F46E5;
    --highlight: #FDE68A;
    --border: #E5E7EB;
    --ink-soft: #6B7280;

    display: flex;
    flex-direction: column;
    height: 460px;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    font-family: inherit;
}

/* ---- Busca e filtros ---- */
.msgt-filterbar[b-fttq6l982e] {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    background: #FCFCFD;
}

.msgt-search[b-fttq6l982e] {
    position: relative;
    margin-bottom: 8px;
}

.msgt-search i.fa-magnifying-glass[b-fttq6l982e] {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ink-soft);
    font-size: 12px;
}

.msgt-search input[b-fttq6l982e] {
    width: 100%;
    padding: 8px 32px;
    border-radius: 9px;
    border: 1.5px solid var(--border);
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color .15s;
}

.msgt-search input:focus[b-fttq6l982e] {
    border-color: var(--primary);
}

.msgt-search-clear[b-fttq6l982e] {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--border);
    color: var(--ink-soft);
    border: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 9px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.msgt-chips[b-fttq6l982e] {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

.msgt-chip[b-fttq6l982e] {
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--ink-soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.msgt-chip i[b-fttq6l982e] {
    font-size: 9px;
}

.msgt-chip.active[b-fttq6l982e] {
    border-color: var(--primary);
    background: #EEF2FF;
    color: var(--primary);
}

.msgt-chip-dropdown[b-fttq6l982e] {
    position: relative;
}

.msgt-dropdown-menu[b-fttq6l982e] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 24px -8px rgba(16, 24, 40, .2);
    z-index: 20;
    min-width: 170px;
    overflow: hidden;
}

.msgt-dropdown-item[b-fttq6l982e] {
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
}

.msgt-dropdown-item:hover[b-fttq6l982e] {
    background: #F3F4F6;
}

.msgt-count[b-fttq6l982e] {
    font-size: 10.5px;
    color: var(--ink-soft);
    margin-left: auto;
    font-family: 'Courier New', monospace;
}

/* ---- Mensagens ---- */
.msgt-messages[b-fttq6l982e] {
    flex: 1;
    overflow-y: auto;
    padding: 6px 14px 10px;
    min-height: 0;
    background: #FFFFFF;
}

.msgt-loading[b-fttq6l982e], .msgt-empty[b-fttq6l982e] {
    text-align: center;
    padding: 30px 10px;
    color: var(--ink-soft);
    font-size: 12.5px;
    font-style: italic;
    margin: 0;
}

.msgt-day-divider[b-fttq6l982e] {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin: 12px 0 10px;
}

.msgt-day-divider span[b-fttq6l982e] {
    background: #EEF0F3;
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.msgt-row[b-fttq6l982e] {
    display: flex;
    gap: 7px;
    margin-bottom: 10px;
    align-items: flex-end;
}

.msgt-row.mine[b-fttq6l982e] {
    flex-direction: row-reverse;
}

.msgt-avatar[b-fttq6l982e] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9.5px;
    font-weight: 700;
    color: white;
}

.msgt-avatar.secretaria[b-fttq6l982e] { background: var(--secretaria); }
.msgt-avatar.professor[b-fttq6l982e] { background: var(--professor); }
.msgt-avatar.aluno[b-fttq6l982e] { background: var(--aluno); }

.msgt-bubble[b-fttq6l982e] {
    max-width: 72%;
}

.msgt-sender[b-fttq6l982e] {
    font-size: 10.5px;
    font-weight: 700;
    margin-bottom: 2px;
}

.msgt-sender.secretaria[b-fttq6l982e] { color: var(--secretaria); }
.msgt-sender.professor[b-fttq6l982e] { color: var(--professor); }
.msgt-sender.aluno[b-fttq6l982e] { color: var(--aluno); }

.msgt-text[b-fttq6l982e] {
    padding: 8px 12px;
    border-radius: 13px;
    font-size: 13px;
    line-height: 1.45;
    background: #F1F2F5;
    color: #1A1D29;
    border-bottom-left-radius: 4px;
    white-space: pre-wrap;
    word-break: break-word;
}

.msgt-row.mine .msgt-text[b-fttq6l982e] {
    background: var(--primary);
    color: white;
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 4px;
}

.msgt-text[b-fttq6l982e]  mark {
    background: var(--highlight);
    color: #1A1D29;
    border-radius: 3px;
    padding: 0 1px;
}

.msgt-time[b-fttq6l982e] {
    font-size: 9.5px;
    color: var(--ink-soft);
    margin-top: 2px;
    font-family: 'Courier New', monospace;
}

.msgt-row.mine .msgt-time[b-fttq6l982e] {
    text-align: right;
}

/* ---- Caixa de escrever ---- */
.msgt-compose[b-fttq6l982e] {
    display: flex;
    gap: 8px;
    padding: 10px 14px;
    border-top: 1px solid var(--border);
}

.msgt-compose textarea[b-fttq6l982e] {
    flex: 1;
    resize: none;
    border: 1.5px solid var(--border);
    border-radius: 11px;
    padding: 9px 11px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    min-height: 40px;
}

.msgt-compose textarea:focus[b-fttq6l982e] {
    border-color: var(--primary);
}

.msgt-send[b-fttq6l982e] {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    border: none;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.msgt-send:disabled[b-fttq6l982e] {
    opacity: .5;
    cursor: default;
}
/* /Components/Pages/EscolaPage/MensagemThreadProfessor.razor.rz.scp.css */
.msgt-panel[b-xvazuemxh3] {
    --secretaria: #64748B;
    --professor: #0D9488;
    --aluno: #EA580C;
    --primary: #4F46E5;
    --highlight: #FDE68A;
    --border: #E5E7EB;
    --ink-soft: #6B7280;

    display: flex;
    flex-direction: column;
    height: 460px;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    font-family: inherit;
}

/* ---- Busca e filtros ---- */
.msgt-filterbar[b-xvazuemxh3] {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    background: #FCFCFD;
}

.msgt-search[b-xvazuemxh3] {
    position: relative;
    margin-bottom: 8px;
}

.msgt-search i.fa-magnifying-glass[b-xvazuemxh3] {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ink-soft);
    font-size: 12px;
}

.msgt-search input[b-xvazuemxh3] {
    width: 100%;
    padding: 8px 32px;
    border-radius: 9px;
    border: 1.5px solid var(--border);
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color .15s;
}

.msgt-search input:focus[b-xvazuemxh3] {
    border-color: var(--primary);
}

.msgt-search-clear[b-xvazuemxh3] {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--border);
    color: var(--ink-soft);
    border: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 9px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.msgt-chips[b-xvazuemxh3] {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

.msgt-chip[b-xvazuemxh3] {
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--ink-soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.msgt-chip i[b-xvazuemxh3] {
    font-size: 9px;
}

.msgt-chip.active[b-xvazuemxh3] {
    border-color: var(--primary);
    background: #EEF2FF;
    color: var(--primary);
}

.msgt-chip-dropdown[b-xvazuemxh3] {
    position: relative;
}

.msgt-dropdown-menu[b-xvazuemxh3] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 24px -8px rgba(16, 24, 40, .2);
    z-index: 20;
    min-width: 170px;
    overflow: hidden;
}

.msgt-dropdown-item[b-xvazuemxh3] {
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
}

.msgt-dropdown-item:hover[b-xvazuemxh3] {
    background: #F3F4F6;
}

.msgt-count[b-xvazuemxh3] {
    font-size: 10.5px;
    color: var(--ink-soft);
    margin-left: auto;
    font-family: 'Courier New', monospace;
}

/* ---- Mensagens ---- */
.msgt-messages[b-xvazuemxh3] {
    flex: 1;
    overflow-y: auto;
    padding: 6px 14px 10px;
    min-height: 0;
    background: #FFFFFF;
}

.msgt-loading[b-xvazuemxh3], .msgt-empty[b-xvazuemxh3] {
    text-align: center;
    padding: 30px 10px;
    color: var(--ink-soft);
    font-size: 12.5px;
    font-style: italic;
    margin: 0;
}

.msgt-day-divider[b-xvazuemxh3] {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin: 12px 0 10px;
}

.msgt-day-divider span[b-xvazuemxh3] {
    background: #EEF0F3;
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.msgt-row[b-xvazuemxh3] {
    display: flex;
    gap: 7px;
    margin-bottom: 10px;
    align-items: flex-end;
}

.msgt-row.mine[b-xvazuemxh3] {
    flex-direction: row-reverse;
}

.msgt-avatar[b-xvazuemxh3] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9.5px;
    font-weight: 700;
    color: white;
}

.msgt-avatar.secretaria[b-xvazuemxh3] { background: var(--secretaria); }
.msgt-avatar.professor[b-xvazuemxh3] { background: var(--professor); }
.msgt-avatar.aluno[b-xvazuemxh3] { background: var(--aluno); }

.msgt-bubble[b-xvazuemxh3] {
    max-width: 72%;
}

.msgt-sender[b-xvazuemxh3] {
    font-size: 10.5px;
    font-weight: 700;
    margin-bottom: 2px;
}

.msgt-sender.secretaria[b-xvazuemxh3] { color: var(--secretaria); }
.msgt-sender.professor[b-xvazuemxh3] { color: var(--professor); }
.msgt-sender.aluno[b-xvazuemxh3] { color: var(--aluno); }

.msgt-text[b-xvazuemxh3] {
    padding: 8px 12px;
    border-radius: 13px;
    font-size: 13px;
    line-height: 1.45;
    background: #F1F2F5;
    color: #1A1D29;
    border-bottom-left-radius: 4px;
    white-space: pre-wrap;
    word-break: break-word;
}

.msgt-row.mine .msgt-text[b-xvazuemxh3] {
    background: var(--primary);
    color: white;
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 4px;
}

.msgt-text[b-xvazuemxh3]  mark {
    background: var(--highlight);
    color: #1A1D29;
    border-radius: 3px;
    padding: 0 1px;
}

.msgt-time[b-xvazuemxh3] {
    font-size: 9.5px;
    color: var(--ink-soft);
    margin-top: 2px;
    font-family: 'Courier New', monospace;
}

.msgt-row.mine .msgt-time[b-xvazuemxh3] {
    text-align: right;
}

/* ---- Caixa de escrever ---- */
.msgt-compose[b-xvazuemxh3] {
    display: flex;
    gap: 8px;
    padding: 10px 14px;
    border-top: 1px solid var(--border);
}

.msgt-compose textarea[b-xvazuemxh3] {
    flex: 1;
    resize: none;
    border: 1.5px solid var(--border);
    border-radius: 11px;
    padding: 9px 11px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    min-height: 40px;
}

.msgt-compose textarea:focus[b-xvazuemxh3] {
    border-color: var(--primary);
}

.msgt-send[b-xvazuemxh3] {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    border: none;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.msgt-send:disabled[b-xvazuemxh3] {
    opacity: .5;
    cursor: default;
}
/* /Components/Pages/EscolaPage/PortalAlunoHome.razor.rz.scp.css */
/* ---- Portal do Aluno — identidade visual própria, não bootstrap genérico ----
   Paleta deliberada: azul-índigo profundo como âncora (combina com a cor do app
   mobile), âmbar quente pra alertas/ação, fundo lousa suave (não branco estéril). */

.pa-shell[b-rv48p4h5vv] {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 4px 40px;
    font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1e293b;
}

/* ---- Loading ---- */
.pa-loading[b-rv48p4h5vv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    color: #64748b;
}

.pa-spinner[b-rv48p4h5vv] {
    width: 36px;
    height: 36px;
    border: 3px solid #e2e8f0;
    border-top-color: #4f46e5;
    border-radius: 50%;
    animation: pa-spin-b-rv48p4h5vv 0.8s linear infinite;
    margin-bottom: 14px;
}

@keyframes pa-spin-b-rv48p4h5vv {
    to { transform: rotate(360deg); }
}

/* ---- Saudação ---- */
.pa-greeting[b-rv48p4h5vv] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 4px 16px;
}

.pa-avatar[b-rv48p4h5vv] {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
}

.pa-avatar-foto[b-rv48p4h5vv] {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
    border: 2px solid white;
}

.pa-greeting h1[b-rv48p4h5vv] {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.01em;
}

.pa-greeting p[b-rv48p4h5vv] {
    font-size: 13px;
    color: #64748b;
    margin: 2px 0 0;
}

.pa-greeting-meta[b-rv48p4h5vv] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pa-greeting-meta i[b-rv48p4h5vv] {
    width: 12px;
    font-size: 11px;
    color: #94a3b8;
}

.pa-greeting-meta-muted[b-rv48p4h5vv] {
    font-style: italic;
    color: #94a3b8;
}

/* ---- Avisos ---- */
.pa-avisos[b-rv48p4h5vv] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.pa-aviso[b-rv48p4h5vv] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.pa-aviso:hover[b-rv48p4h5vv] {
    transform: translateX(2px);
}

.pa-aviso span[b-rv48p4h5vv] {
    flex: 1;
}

.pa-aviso-seta[b-rv48p4h5vv] {
    font-size: 11px;
    opacity: 0.6;
}

.pa-aviso-danger[b-rv48p4h5vv] {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.pa-aviso-warning[b-rv48p4h5vv] {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

/* ---- Navegação em pílulas ---- */
.pa-nav[b-rv48p4h5vv] {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 4px;
    background: #f1f5f9;
    border-radius: 14px;
    margin-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.pa-nav[b-rv48p4h5vv]::-webkit-scrollbar {
    display: none;
}

.pa-nav-item[b-rv48p4h5vv] {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 9px 14px;
    border: none;
    background: transparent;
    border-radius: 10px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: background 0.15s ease, color 0.15s ease;
}

.pa-nav-item i[b-rv48p4h5vv] {
    font-size: 13px;
}

.pa-nav-item.active[b-rv48p4h5vv] {
    background: white;
    color: #4f46e5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.pa-dot[b-rv48p4h5vv] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f59e0b;
    margin-left: 2px;
}

/* ---- Estatísticas (dashboard) ---- */
.pa-stats[b-rv48p4h5vv] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.pa-stat-tile[b-rv48p4h5vv] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 10px;
    text-align: center;
}

.pa-stat-icon[b-rv48p4h5vv] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 15px;
}

.pa-icon-blue[b-rv48p4h5vv] { background: #eef2ff; color: #4f46e5; }
.pa-icon-green[b-rv48p4h5vv] { background: #ecfdf5; color: #059669; }
.pa-icon-amber[b-rv48p4h5vv] { background: #fffbeb; color: #d97706; }
.pa-icon-purple[b-rv48p4h5vv] { background: #faf5ff; color: #9333ea; }

.pa-stat-value[b-rv48p4h5vv] {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.pa-stat-label[b-rv48p4h5vv] {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
}

.pa-section-title[b-rv48p4h5vv] {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 10px 2px;
    color: #334155;
}

.pa-section-title-spaced[b-rv48p4h5vv] {
    margin-top: 22px;
}

/* ---- Grade de blocos (acesso rápido) ---- */
.pa-tiles[b-rv48p4h5vv] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.pa-tile[b-rv48p4h5vv] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px 8px;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.15s ease, transform 0.1s ease;
}

.pa-tile:hover[b-rv48p4h5vv] {
    border-color: #c7d2fe;
    transform: translateY(-1px);
}

.pa-tile i[b-rv48p4h5vv] {
    font-size: 20px;
    color: #4f46e5;
}

.pa-tile span[b-rv48p4h5vv] {
    font-size: 11.5px;
    font-weight: 700;
    color: #334155;
    text-align: center;
}

.pa-tile-badge[b-rv48p4h5vv] {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #f59e0b;
    color: white;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pa-voltar[b-rv48p4h5vv] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #4f46e5;
    font-size: 13px;
    font-weight: 700;
    padding: 0;
    margin-bottom: 14px;
    cursor: pointer;
    font-family: inherit;
}

@media (max-width: 480px) {
    .pa-tiles[b-rv48p4h5vv] {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---- Listas ---- */
.pa-list[b-rv48p4h5vv] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pa-row[b-rv48p4h5vv] {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px;
    text-decoration: none;
    color: inherit;
}

.pa-row-icon[b-rv48p4h5vv] {
    color: #94a3b8;
    font-size: 15px;
    flex-shrink: 0;
}

.pa-row-body[b-rv48p4h5vv] {
    flex: 1;
    min-width: 0;
}

.pa-row-title[b-rv48p4h5vv] {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.pa-row-sub[b-rv48p4h5vv] {
    font-size: 12px;
    color: #64748b;
    margin-top: 1px;
}

.pa-row-value[b-rv48p4h5vv] {
    font-size: 16px;
    font-weight: 800;
    color: #4f46e5;
    white-space: nowrap;
}

.pa-row-value-max[b-rv48p4h5vv] {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
}

.pa-row-end[b-rv48p4h5vv] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.pa-row-finance.pa-row-pending[b-rv48p4h5vv] {
    border-left: 3px solid #f59e0b;
}

.pa-row-turma[b-rv48p4h5vv] {
    border-left: 3px solid #4f46e5;
}

.pa-row-msg .pa-row-icon[b-rv48p4h5vv] {
    color: #4f46e5;
}

.pa-msg-corpo[b-rv48p4h5vv] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 3px 0;
}

.pa-msg-data[b-rv48p4h5vv] {
    font-size: 11px;
    color: #94a3b8;
}

.pa-row-link:hover[b-rv48p4h5vv] {
    border-color: #c7d2fe;
}

.pa-row-arrow[b-rv48p4h5vv] {
    color: #cbd5e1;
    font-size: 12px;
}

/* ---- Badges ---- */
.pa-badge[b-rv48p4h5vv] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.pa-badge-green[b-rv48p4h5vv] { background: #ecfdf5; color: #059669; }
.pa-badge-red[b-rv48p4h5vv] { background: #fef2f2; color: #dc2626; }
.pa-badge-amber[b-rv48p4h5vv] { background: #fffbeb; color: #d97706; }
.pa-badge-muted[b-rv48p4h5vv] { background: #f1f5f9; color: #64748b; }

/* ---- Cards de atividade ---- */
.pa-card[b-rv48p4h5vv] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
}

.pa-card-head[b-rv48p4h5vv] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.pa-card-text[b-rv48p4h5vv] {
    font-size: 13px;
    color: #475569;
    margin: 10px 0;
    line-height: 1.5;
}

.pa-entrega-ok[b-rv48p4h5vv] {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: #059669;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.pa-feedback[b-rv48p4h5vv] {
    font-size: 12px;
    color: #475569;
    background: #f8fafc;
    padding: 8px 10px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.pa-textarea[b-rv48p4h5vv] {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px;
    font-size: 13px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 10px;
}

.pa-card-actions[b-rv48p4h5vv] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pa-file-input[b-rv48p4h5vv] {
    font-size: 12px;
    flex: 1;
    min-width: 160px;
}

.pa-card-narrow[b-rv48p4h5vv] {
    max-width: 380px;
}

/* ---- Botões e inputs ---- */
.pa-btn[b-rv48p4h5vv] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    cursor: pointer;
}

.pa-btn-primary[b-rv48p4h5vv] {
    background: #4f46e5;
    color: white;
}

.pa-btn-outline[b-rv48p4h5vv] {
    background: white;
    color: #4f46e5;
    border: 1.5px solid #c7d2fe;
}

.pa-btn-sm[b-rv48p4h5vv] {
    padding: 7px 12px;
    font-size: 12px;
}

.pa-btn-block[b-rv48p4h5vv] {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

.pa-label[b-rv48p4h5vv] {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin: 12px 0 5px;
}

.pa-input[b-rv48p4h5vv] {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
}

/* ---- Estado vazio ---- */
.pa-empty[b-rv48p4h5vv] {
    text-align: center;
    padding: 50px 20px;
    color: #94a3b8;
}

.pa-empty i[b-rv48p4h5vv] {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

.pa-empty p[b-rv48p4h5vv] {
    font-size: 13px;
    margin: 0;
}

@media (max-width: 480px) {
    .pa-stats[b-rv48p4h5vv] {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    .pa-stat-tile[b-rv48p4h5vv] {
        padding: 12px 6px;
    }
    .pa-stat-value[b-rv48p4h5vv] {
        font-size: 15px;
    }
}

/* ---- Meu Perfil ---- */
.pa-subsection-title[b-rv48p4h5vv] {
    font-size: 13.5px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 18px 2px 8px;
}

.pa-perfil-card[b-rv48p4h5vv] {
    display: flex;
    flex-direction: column;
}

.pa-perfil-foto-card[b-rv48p4h5vv] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pa-perfil-foto[b-rv48p4h5vv] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e2e8f0;
    background: #f1f5f9;
    flex-shrink: 0;
}

.pa-perfil-foto-acoes[b-rv48p4h5vv] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pa-upload-label[b-rv48p4h5vv] {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.pa-upload-label input[type="file"][b-rv48p4h5vv] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.pa-spinner-inline[b-rv48p4h5vv] {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #e2e8f0;
    border-top-color: #4f46e5;
    border-radius: 50%;
    animation: pa-spin-inline-b-rv48p4h5vv 0.7s linear infinite;
}

@keyframes pa-spin-inline-b-rv48p4h5vv {
    to { transform: rotate(360deg); }
}

.pa-perfil-field[b-rv48p4h5vv] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
}

.pa-perfil-field:last-child[b-rv48p4h5vv] {
    border-bottom: none;
}

.pa-perfil-field span[b-rv48p4h5vv] {
    color: #64748b;
    flex-shrink: 0;
}

.pa-perfil-field strong[b-rv48p4h5vv] {
    color: #1e293b;
    font-weight: 600;
    text-align: right;
}

.pa-perfil-aviso[b-rv48p4h5vv] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 12px;
    line-height: 1.5;
    padding: 10px 12px;
    border-radius: 10px;
    margin: 0 0 12px;
}

.pa-divisor[b-rv48p4h5vv] {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 14px 0 10px;
}

.pa-perfil-secao-label[b-rv48p4h5vv] {
    font-size: 11.5px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 8px;
}

.pa-perfil-linha-dupla[b-rv48p4h5vv] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pa-select[b-rv48p4h5vv] {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    background: white;
}

.pa-row-solicitacao[b-rv48p4h5vv] {
    align-items: flex-start;
}

.pa-solicitacao-motivo[b-rv48p4h5vv] {
    color: #dc2626;
}

.pa-status-badge[b-rv48p4h5vv] {
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}

.pa-status-pendente[b-rv48p4h5vv] {
    background: #fffbeb;
    color: #d97706;
}

.pa-status-aprovada[b-rv48p4h5vv] {
    background: #ecfdf5;
    color: #059669;
}

.pa-status-rejeitada[b-rv48p4h5vv] {
    background: #fef2f2;
    color: #dc2626;
}
/* /Components/Pages/EscolaPage/PortalProfessorHome.razor.rz.scp.css */
/* ---- Portal do Professor — mesma estrutura visual do Portal do Aluno,
   paleta verde-azulada (mesma do app mobile do professor) pra diferenciar. */

.pp-shell[b-nxtgwstgti] {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 4px 40px;
    font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1e293b;
}

.pp-loading[b-nxtgwstgti] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    color: #64748b;
}

.pp-spinner[b-nxtgwstgti] {
    width: 36px;
    height: 36px;
    border: 3px solid #e2e8f0;
    border-top-color: #0f766e;
    border-radius: 50%;
    animation: pp-spin-b-nxtgwstgti 0.8s linear infinite;
    margin-bottom: 14px;
}

@keyframes pp-spin-b-nxtgwstgti {
    to { transform: rotate(360deg); }
}

.pp-greeting[b-nxtgwstgti] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 16px 16px;
}

.pp-avatar[b-nxtgwstgti] {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.25);
}

.pp-avatar-foto[b-nxtgwstgti] {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.25);
    border: 2px solid white;
}

.pp-greeting h1[b-nxtgwstgti] {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.01em;
}

.pp-greeting p[b-nxtgwstgti] {
    font-size: 13px;
    color: #64748b;
    margin: 2px 0 0;
}

.pp-greeting-meta[b-nxtgwstgti] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pp-greeting-meta i[b-nxtgwstgti] {
    width: 12px;
    font-size: 11px;
    color: #94a3b8;
}

.pp-greeting-meta-muted[b-nxtgwstgti] {
    font-style: italic;
    color: #94a3b8;
}

.pp-stats[b-nxtgwstgti] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 0 16px 24px;
}

.pp-stat-tile[b-nxtgwstgti] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 10px;
    text-align: center;
}

.pp-stat-icon[b-nxtgwstgti] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 15px;
}

.pp-icon-teal[b-nxtgwstgti] { background: #f0fdfa; color: #0f766e; }
.pp-icon-amber[b-nxtgwstgti] { background: #fffbeb; color: #d97706; }
.pp-icon-purple[b-nxtgwstgti] { background: #faf5ff; color: #9333ea; }

.pp-stat-value[b-nxtgwstgti] {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.pp-stat-label[b-nxtgwstgti] {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
}

.pp-section-title[b-nxtgwstgti] {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 10px 18px;
    color: #334155;
}

.pp-section-title-spaced[b-nxtgwstgti] {
    margin-top: 22px;
}

/* ---- Grade de blocos ---- */
.pp-tiles[b-nxtgwstgti] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 0 16px 10px;
}

.pp-tile[b-nxtgwstgti] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px 8px;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.15s ease, transform 0.1s ease;
}

.pp-tile:hover[b-nxtgwstgti] {
    border-color: #99f6e4;
    transform: translateY(-1px);
}

.pp-tile i[b-nxtgwstgti] {
    font-size: 20px;
    color: #0f766e;
}

.pp-tile span[b-nxtgwstgti] {
    font-size: 11.5px;
    font-weight: 700;
    color: #334155;
    text-align: center;
}

.pp-tile-badge[b-nxtgwstgti] {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #f59e0b;
    color: white;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-voltar[b-nxtgwstgti] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #0f766e;
    font-size: 13px;
    font-weight: 700;
    padding: 0;
    margin: 20px 16px 14px;
    cursor: pointer;
    font-family: inherit;
}

@media (max-width: 480px) {
    .pp-tiles[b-nxtgwstgti] {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---- Listas ---- */
.pp-list[b-nxtgwstgti] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 16px;
}

.pp-row[b-nxtgwstgti] {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px;
}

.pp-row-icon[b-nxtgwstgti] {
    color: #94a3b8;
    font-size: 15px;
    flex-shrink: 0;
}

.pp-row-body[b-nxtgwstgti] {
    flex: 1;
    min-width: 0;
}

.pp-row-title[b-nxtgwstgti] {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.pp-row-sub[b-nxtgwstgti] {
    font-size: 12px;
    color: #64748b;
    margin-top: 1px;
}

.pp-row-turma[b-nxtgwstgti] {
    border-left: 3px solid #0f766e;
}

.pp-row-badge[b-nxtgwstgti] {
    font-size: 11px;
    font-weight: 700;
    color: #0f766e;
    background: #f0fdfa;
    padding: 3px 8px;
    border-radius: 999px;
    white-space: nowrap;
}

/* ---- Linha de chamada (checkbox + observacao) ---- */
.pp-row-chamada[b-nxtgwstgti] {
    gap: 10px;
}

.pp-checkbox[b-nxtgwstgti] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    accent-color: #0f766e;
}

.pp-input-obs[b-nxtgwstgti] {
    max-width: 160px;
    font-size: 12px;
    padding: 7px 10px;
}

.pp-presente[b-nxtgwstgti] {
    border-left: 3px solid #059669;
}

.pp-ausente[b-nxtgwstgti] {
    border-left: 3px solid #dc2626;
}

/* ---- Mensagens ---- */
.pp-msg-row[b-nxtgwstgti] {
    border-left: 3px solid #cbd5e1;
}

.pp-msg-meta[b-nxtgwstgti] {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 4px;
}

.pp-destino-toggle[b-nxtgwstgti] {
    display: flex;
    gap: 8px;
    margin-bottom: 4px;
}

.pp-destino-btn[b-nxtgwstgti] {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid #e2e8f0;
    color: #64748b;
}

.pp-destino-btn.active[b-nxtgwstgti] {
    border-color: #0f766e;
    color: #0f766e;
    background: #f0fdfa;
}

.pp-feedback[b-nxtgwstgti] {
    font-size: 12px;
    color: #dc2626;
    margin: 4px 0 0;
}

/* ---- Cards e formulários ---- */
.pp-card[b-nxtgwstgti] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    margin: 0 16px 14px;
}

.pp-label[b-nxtgwstgti] {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin: 12px 0 5px;
}

.pp-label:first-child[b-nxtgwstgti] {
    margin-top: 0;
}

.pp-input[b-nxtgwstgti], .pp-select[b-nxtgwstgti], .pp-textarea[b-nxtgwstgti] {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
}

.pp-textarea[b-nxtgwstgti] {
    resize: vertical;
}

/* ---- Botões ---- */
.pp-btn[b-nxtgwstgti] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    cursor: pointer;
}

.pp-btn-primary[b-nxtgwstgti] {
    background: #0f766e;
    color: white;
}

.pp-btn-outline[b-nxtgwstgti] {
    background: white;
    color: #0f766e;
    border: 1.5px solid #99f6e4;
}

.pp-btn-block[b-nxtgwstgti] {
    width: 100%;
    margin-top: 12px;
}

/* ---- Estado vazio ---- */
.pp-empty[b-nxtgwstgti] {
    text-align: center;
    padding: 50px 20px;
    color: #94a3b8;
}

.pp-empty i[b-nxtgwstgti] {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

.pp-empty p[b-nxtgwstgti] {
    font-size: 13px;
    margin: 0;
}

@media (max-width: 480px) {
    .pp-stats[b-nxtgwstgti] {
        gap: 6px;
    }
    .pp-stat-tile[b-nxtgwstgti] {
        padding: 12px 6px;
    }
    .pp-stat-value[b-nxtgwstgti] {
        font-size: 15px;
    }
}
/* /Components/Pages/POSPage/PosList.razor.rz.scp.css */
.pos-container[b-a12v9pk4es] {
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
}

/* Main Content */
.pos-main-content[b-a12v9pk4es] {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Products Section (70% width) */
.pos-products-section[b-a12v9pk4es] {
    flex: 7;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #fff;
}

/* Search and Filters */
.pos-search-filters[b-a12v9pk4es] {
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Products Grid */
.pos-products-grid[b-a12v9pk4es] {
    flex: 1;
    overflow-y: auto;
    background-color: #f9f9f9;
}

.product-card[b-a12v9pk4es] {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .product-card:hover[b-a12v9pk4es] {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

.product-image[b-a12v9pk4es] {
    height: 96px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

    .product-image img[b-a12v9pk4es] {
        max-height: 100%;
        width: auto;
        object-fit: contain;
    }

.out-of-stock[b-a12v9pk4es], .low-stock[b-a12v9pk4es] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 2px;
    font-size: 10px;
    font-weight: bold;
}

.out-of-stock[b-a12v9pk4es] {
    background-color: rgba(220, 53, 69, 0.9);
    color: white;
}

.low-stock[b-a12v9pk4es] {
    background-color: rgba(255, 193, 7, 0.9);
    color: #000;
}

.product-info[b-a12v9pk4es] {
    padding: 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name[b-a12v9pk4es] {
    font-size: 12px !important;
    margin-bottom: 4px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price[b-a12v9pk4es] {
    font-weight: bold;
    color: #0d6efd;
    font-size: 13px;
}

.product-stock[b-a12v9pk4es] {
    font-size: 11px;
}

/* Order Section (30% width) */
.pos-order-section[b-a12v9pk4es] {
    flex: 3;
    display: flex;
    flex-direction: column;
    max-width: 400px;
    background-color: #fff;
    border-left: 1px solid #ddd;
}

/* Order Header */
.order-header[b-a12v9pk4es] {
    background-color: #0d6efd;
    color: white;
}

    .order-header h6[b-a12v9pk4es] {
        font-size: 14px;
    }

    .order-header small[b-a12v9pk4es] {
        font-size: 11px;
    }

/* Order Items */
.order-items[b-a12v9pk4es] {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
}

.order-items-container[b-a12v9pk4es] {
    max-height: 250px; /* Shows about 5-6 items */
    overflow-y: auto;
}

.order-items-list[b-a12v9pk4es] {
    padding: 0;
}

.order-item[b-a12v9pk4es] {
    display: flex;
    align-items: center;
    background-color: #fff;
    margin: 2px;
    border-radius: 3px;
}

.item-info[b-a12v9pk4es] {
    flex: 2;
    min-width: 0;
}

    .item-info h6[b-a12v9pk4es] {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .item-info small[b-a12v9pk4es] {
        font-size: 11px;
    }

.item-qty[b-a12v9pk4es] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .item-qty input[b-a12v9pk4es] {
        width: 40px;
        text-align: center;
        font-size: 12px;
        padding: 2px;
    }

    .item-qty button[b-a12v9pk4es] {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.item-price[b-a12v9pk4es] {
    flex: 1;
    text-align: right;
    font-size: 13px;
    padding-right: 8px;
}

.item-actions[b-a12v9pk4es] {
    width: 24px;
}

    .item-actions button[b-a12v9pk4es] {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Empty States */
.empty-cart[b-a12v9pk4es], .no-customer-selected[b-a12v9pk4es] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
}

    .empty-cart i[b-a12v9pk4es], .no-customer-selected i[b-a12v9pk4es] {
        color: #ddd;
    }

    .empty-cart h6[b-a12v9pk4es], .no-customer-selected h6[b-a12v9pk4es] {
        font-size: 14px;
    }

    .empty-cart p[b-a12v9pk4es], .no-customer-selected p[b-a12v9pk4es] {
        font-size: 12px;
    }

/* Order Summary */
.order-summary[b-a12v9pk4es] {
    background-color: #fff;
}

.summary-row[b-a12v9pk4es] {
    font-size: 13px;
}

    .summary-row.total[b-a12v9pk4es] {
        font-size: 14px;
    }

/* Payment Methods */
.payment-methods[b-a12v9pk4es] {
    background-color: #fff;
}

    .payment-methods h6[b-a12v9pk4es] {
        font-size: 13px;
    }

.methods-grid[b-a12v9pk4es] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.method-btn[b-a12v9pk4es] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 12px;
}

    .method-btn:hover[b-a12v9pk4es] {
        background-color: #e9ecef;
    }

    .method-btn.active[b-a12v9pk4es] {
        background-color: #e7f1ff;
        border-color: #86b7fe;
        color: #0d6efd;
    }

    .method-btn i[b-a12v9pk4es] {
        font-size: 16px;
        margin-bottom: 3px;
    }

/* Action Buttons */
.action-buttons[b-a12v9pk4es] {
    background-color: #fff;
    border-top: 1px solid #dee2e6;
}

/* Custom scrollbar */
.order-items-container[b-a12v9pk4es]::-webkit-scrollbar {
    width: 5px;
}

.order-items-container[b-a12v9pk4es]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.order-items-container[b-a12v9pk4es]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

    .order-items-container[b-a12v9pk4es]::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

/* Receipt Modal */
.receipt-content[b-a12v9pk4es] {
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

.receipt-logo[b-a12v9pk4es] {
    max-height: 50px;
    max-width: 180px;
}

/* Responsive */
@media (max-width: 992px) {
    .pos-main-content[b-a12v9pk4es] {
        flex-direction: column;
    }

    .pos-order-section[b-a12v9pk4es] {
        max-width: 100%;
        border-left: none;
        border-top: 1px solid #ddd;
    }
}
