:root {
    --adm-sidebar-width: 264px;
    --adm-bg: #f6f7f9;
    --adm-surface: #ffffff;
    --adm-surface-soft: #f9fafb;
    --adm-border: #dfe3e8;
    --adm-border-strong: #c8d0d9;
    --adm-text: #1f2933;
    --adm-muted: #697586;
    --adm-sidebar: #171717;
    --adm-sidebar-soft: #2b2b2b;
    --adm-primary: #11743c;
    --adm-primary-soft: #eefaf2;
    --adm-teal: #1d4ed8;
    --adm-teal-soft: #ecfdf5;
    --adm-amber: #b45309;
    --adm-amber-soft: #fffbeb;
    --adm-rose: #be123c;
    --adm-rose-soft: #fff1f2;
    --adm-violet: #6d28d9;
    --adm-violet-soft: #f5f3ff;
    --adm-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    --adm-shadow-soft: 0 1px 2px rgba(15, 23, 42, 0.06);
    --adm-radius: 8px;
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body.secretaria-admin-theme {
    margin: 0;
    min-height: 100vh;
    background: var(--adm-bg);
    color: var(--adm-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0;
}

body.secretaria-admin-theme a {
    color: inherit;
    text-decoration: none;
}

body.secretaria-admin-theme button,
body.secretaria-admin-theme input,
body.secretaria-admin-theme select,
body.secretaria-admin-theme textarea {
    font: inherit;
}

.adm-shell {
    min-height: 100vh;
}

.adm-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 20;
    width: var(--adm-sidebar-width);
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--adm-sidebar);
    color: #ffffff;
    box-shadow: 4px 0 22px rgba(15, 23, 42, 0.18);
}

body.admin-bar .adm-sidebar {
    top: 32px;
    height: calc(100vh - 32px);
}

.adm-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.adm-brand-logo,
.adm-user-logo,
.adm-brand-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: var(--adm-radius);
}

.adm-brand-logo,
.adm-user-logo {
    object-fit: contain;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 3px;
}

.adm-brand-icon {
    display: grid;
    place-items: center;
    background: var(--adm-primary);
}

.adm-brand-icon .dashicons {
    width: 22px;
    height: 22px;
    font-size: 22px;
}

.adm-brand strong {
    display: block;
    font-size: 16px;
    line-height: 1.2;
}

.adm-brand span {
    display: block;
    margin-top: 2px;
    color: #cbd5e1;
    font-size: 12px;
}

.adm-nav {
    flex: 1;
    overflow-y: auto;
    padding: 14px 12px;
}

.adm-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    margin-bottom: 3px;
    padding: 10px 14px;
    border-radius: var(--adm-radius);
    color: #d4d4d8;
    font-size: 14px;
    font-weight: 600;
    transition: background 160ms ease, color 160ms ease;
}

.adm-nav a:hover,
.adm-nav a:focus-visible {
    background: var(--adm-sidebar-soft);
    color: #ffffff;
    outline: none;
}

.adm-nav a.active {
    background: var(--adm-primary);
    color: #ffffff;
}

.adm-nav .dashicons {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

.adm-user {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #e5e7eb;
}

.adm-avatar {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #0f766e;
    font-size: 13px;
    font-weight: 800;
}

.adm-user strong {
    display: block;
    font-size: 13px;
}

.adm-user span {
    display: block;
    color: #a1a1aa;
    font-size: 12px;
}

.adm-user-logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.adm-main {
    min-height: 100vh;
    margin-left: var(--adm-sidebar-width);
}

.adm-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 74px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--adm-border);
    box-shadow: var(--adm-shadow-soft);
    backdrop-filter: blur(10px);
}

body.admin-bar .adm-topbar {
    top: 32px;
}

.adm-title-group {
    min-width: 0;
}

.adm-title-group h1 {
    margin: 0;
    color: var(--adm-text);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
}

.adm-title-group p {
    margin: 4px 0 0;
    color: var(--adm-muted);
    font-size: 13px;
}

.adm-topbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.adm-edit-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 7px 11px;
    border: 1px solid var(--adm-border);
    border-radius: var(--adm-radius);
    background: #ffffff;
    color: var(--adm-muted);
    font-size: 13px;
    font-weight: 800;
}

.adm-edit-status.unlocked {
    border-color: rgba(17, 116, 60, 0.28);
    background: var(--adm-primary-soft);
    color: var(--adm-primary);
}

.adm-edit-status .dashicons {
    width: 17px;
    height: 17px;
    font-size: 17px;
}

.adm-locked-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid var(--adm-border);
    border-radius: var(--adm-radius);
    background: #ffffff;
    color: var(--adm-muted);
    font-size: 13px;
}

.adm-locked-note strong {
    display: block;
    color: var(--adm-text);
    font-size: 13px;
}

.adm-locked-note .dashicons {
    width: 19px;
    height: 19px;
    color: var(--adm-primary);
    font-size: 19px;
    flex: 0 0 auto;
}

.adm-menu-toggle {
    display: none;
}

.adm-content {
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: 26px 28px 36px;
}

.adm-section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin: 26px 0 12px;
}

.adm-section-title h2 {
    margin: 0;
    font-size: 17px;
    line-height: 1.25;
}

.adm-section-title p {
    margin: 3px 0 0;
    color: var(--adm-muted);
    font-size: 13px;
}

.adm-landing {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--adm-border);
    border-radius: var(--adm-radius);
    background: #ffffff;
    box-shadow: var(--adm-shadow-soft);
}

.adm-landing-logo-wrap {
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    border: 1px solid var(--adm-border);
    border-radius: 50%;
    background: #ffffff;
}

.adm-landing-logo {
    width: 132px;
    height: 132px;
    object-fit: contain;
}

.adm-landing-copy h2 {
    max-width: 760px;
    margin: 14px 0 10px;
    color: var(--adm-text);
    font-size: 34px;
    line-height: 1.08;
}

.adm-landing-copy p {
    max-width: 680px;
    margin: 0;
    color: var(--adm-muted);
    font-size: 17px;
}

.adm-grid {
    display: grid;
    gap: 18px;
}

.adm-grid.two {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.adm-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.adm-grid.four {
    grid-template-columns: repeat(4, minmax(210px, 1fr));
}

.adm-panel,
.adm-stat-card,
.adm-module-card {
    border: 1px solid var(--adm-border);
    border-radius: var(--adm-radius);
    background: var(--adm-surface);
    box-shadow: var(--adm-shadow-soft);
}

.adm-panel {
    padding: 20px;
}

.adm-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.adm-panel-header h2,
.adm-panel-header h3 {
    margin: 0;
    color: var(--adm-text);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
}

.adm-panel-header p {
    margin: 3px 0 0;
    color: var(--adm-muted);
    font-size: 13px;
}

.adm-stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 106px;
    padding: 18px;
    text-align: left;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.adm-stat-card:hover,
.adm-stat-card:focus-visible {
    transform: translateY(-2px);
    border-color: var(--adm-border-strong);
    box-shadow: var(--adm-shadow);
    outline: none;
}

.adm-stat-icon,
.adm-module-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: var(--adm-radius);
}

.adm-stat-icon .dashicons,
.adm-module-icon .dashicons {
    width: 22px;
    height: 22px;
    font-size: 22px;
}

.adm-stat-icon.blue,
.adm-module-icon.blue {
    background: var(--adm-primary-soft);
    color: var(--adm-primary);
}

.adm-stat-icon.teal,
.adm-module-icon.teal {
    background: var(--adm-teal-soft);
    color: var(--adm-teal);
}

.adm-stat-icon.amber,
.adm-module-icon.amber {
    background: var(--adm-amber-soft);
    color: var(--adm-amber);
}

.adm-stat-icon.rose,
.adm-module-icon.rose {
    background: var(--adm-rose-soft);
    color: var(--adm-rose);
}

.adm-stat-icon.violet,
.adm-module-icon.violet {
    background: var(--adm-violet-soft);
    color: var(--adm-violet);
}

.adm-stat-value {
    margin: 0;
    color: var(--adm-text);
    font-size: 28px;
    line-height: 1;
    font-weight: 850;
}

.adm-stat-label {
    margin: 5px 0 0;
    color: var(--adm-muted);
    font-size: 13px;
    font-weight: 700;
}

.adm-module-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 84px;
    padding: 16px;
    cursor: pointer;
    text-align: left;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.adm-module-card:hover,
.adm-module-card:focus-visible {
    border-color: var(--adm-border-strong);
    box-shadow: var(--adm-shadow);
    outline: none;
}

.adm-module-card strong {
    display: block;
    font-size: 14px;
}

.adm-module-card span:not(.dashicons) {
    display: block;
    margin-top: 2px;
    color: var(--adm-muted);
    font-size: 12px;
}

.adm-btn,
.adm-icon-btn,
.adm-segment button,
.adm-calendar-day {
    border: 0;
    cursor: pointer;
}

.adm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 15px;
    border-radius: var(--adm-radius);
    background: var(--adm-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.adm-btn:hover,
.adm-btn:focus-visible {
    background: #1d4ed8;
    outline: none;
}

.adm-btn.secondary {
    background: #ffffff;
    color: var(--adm-text);
    border: 1px solid var(--adm-border);
}

.adm-btn.secondary:hover,
.adm-btn.secondary:focus-visible {
    background: var(--adm-surface-soft);
    border-color: var(--adm-border-strong);
}

.adm-btn.danger {
    background: var(--adm-rose);
}

.adm-btn.danger:hover,
.adm-btn.danger:focus-visible {
    background: #9f1239;
}

.adm-btn .dashicons {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

.adm-icon-btn {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: var(--adm-radius);
    background: #ffffff;
    color: var(--adm-muted);
    border: 1px solid var(--adm-border);
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.adm-icon-btn:hover,
.adm-icon-btn:focus-visible {
    background: var(--adm-surface-soft);
    color: var(--adm-text);
    border-color: var(--adm-border-strong);
    outline: none;
}

.adm-icon-btn.danger {
    color: var(--adm-rose);
}

.adm-icon-btn .dashicons {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

.adm-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.adm-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.adm-input,
.adm-select,
.adm-textarea {
    width: 100%;
    min-height: 40px;
    padding: 9px 12px;
    border: 1px solid var(--adm-border-strong);
    border-radius: var(--adm-radius);
    background: #ffffff;
    color: var(--adm-text);
    font-size: 14px;
    line-height: 1.4;
}

.adm-input:focus,
.adm-select:focus,
.adm-textarea:focus {
    border-color: var(--adm-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
    outline: none;
}

.adm-toolbar .adm-input,
.adm-toolbar .adm-select {
    width: min(260px, 100%);
}

.adm-textarea {
    min-height: 112px;
    resize: vertical;
}

.adm-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.adm-form-group {
    margin-bottom: 14px;
}

.adm-form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--adm-text);
    font-size: 13px;
    font-weight: 800;
}

.adm-help {
    display: block;
    margin-top: 4px;
    color: var(--adm-muted);
    font-size: 12px;
}

.adm-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--adm-border);
    border-radius: var(--adm-radius);
}

.adm-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: #ffffff;
}

.adm-table th,
.adm-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--adm-border);
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
}

.adm-table th {
    background: var(--adm-surface-soft);
    color: #475569;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.adm-table tr:last-child td {
    border-bottom: 0;
}

.adm-table tbody tr:hover {
    background: #fbfdff;
}

.adm-file-link {
    color: var(--adm-primary);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.adm-row-actions {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.adm-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 24px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.adm-badge.success {
    background: var(--adm-teal-soft);
    color: var(--adm-teal);
}

.adm-badge.warning {
    background: var(--adm-amber-soft);
    color: var(--adm-amber);
}

.adm-badge.danger {
    background: var(--adm-rose-soft);
    color: var(--adm-rose);
}

.adm-badge.info {
    background: var(--adm-primary-soft);
    color: var(--adm-primary);
}

.adm-badge.neutral {
    background: #f1f5f9;
    color: #475569;
}

.adm-list {
    display: grid;
    gap: 10px;
}

.adm-kpi-list {
    display: grid;
    gap: 10px;
}

.adm-kpi-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--adm-border);
}

.adm-kpi-line:last-child {
    border-bottom: 0;
}

.adm-kpi-line span {
    color: var(--adm-muted);
    font-size: 14px;
}

.adm-kpi-line strong {
    color: var(--adm-text);
    font-size: 16px;
}

.adm-event-row,
.adm-task-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--adm-border);
}

.adm-event-row:last-child,
.adm-task-row:last-child {
    border-bottom: 0;
}

.adm-event-time {
    min-width: 58px;
    color: var(--adm-primary);
    font-size: 13px;
    font-weight: 850;
}

.adm-event-row strong,
.adm-task-row strong {
    display: block;
    color: var(--adm-text);
    font-size: 14px;
}

.adm-event-row p,
.adm-task-row p {
    margin: 3px 0 0;
    color: var(--adm-muted);
    font-size: 13px;
}

.adm-task-check {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--adm-primary);
    flex: 0 0 auto;
}

.adm-task-check:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.adm-task-content {
    min-width: 0;
    flex: 1;
}

.adm-task-row.done .adm-task-content strong {
    color: var(--adm-muted);
    text-decoration: line-through;
}

.adm-task-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 9px;
}

.adm-calendar-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
    gap: 18px;
}

.adm-calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.adm-calendar-head h2 {
    margin: 0;
    font-size: 18px;
}

.adm-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.adm-calendar-weekday {
    padding: 8px 0;
    color: var(--adm-muted);
    font-size: 12px;
    font-weight: 850;
    text-align: center;
    text-transform: uppercase;
}

.adm-calendar-day {
    position: relative;
    min-height: 72px;
    padding: 8px;
    border: 1px solid var(--adm-border);
    border-radius: var(--adm-radius);
    background: #ffffff;
    color: var(--adm-text);
    text-align: left;
    transition: border-color 160ms ease, background 160ms ease;
}

.adm-calendar-day:hover,
.adm-calendar-day:focus-visible {
    border-color: var(--adm-primary);
    background: var(--adm-primary-soft);
    outline: none;
}

.adm-calendar-day.other-month {
    color: #9aa4b2;
    background: #f8fafc;
}

.adm-calendar-day.today {
    border-color: var(--adm-primary);
}

.adm-calendar-day.selected {
    background: var(--adm-primary);
    color: #ffffff;
}

.adm-calendar-day.has-event::after {
    content: "";
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--adm-teal);
}

.adm-calendar-day.selected.has-event::after {
    background: #ffffff;
}

.adm-segment {
    display: inline-flex;
    padding: 3px;
    border: 1px solid var(--adm-border);
    border-radius: var(--adm-radius);
    background: #ffffff;
}

.adm-segment button {
    min-height: 32px;
    padding: 6px 11px;
    border-radius: 6px;
    background: transparent;
    color: var(--adm-muted);
    font-size: 13px;
    font-weight: 800;
}

.adm-segment button.active {
    background: var(--adm-primary);
    color: #ffffff;
}

.adm-empty {
    padding: 26px;
    border: 1px dashed var(--adm-border-strong);
    border-radius: var(--adm-radius);
    background: var(--adm-surface-soft);
    color: var(--adm-muted);
    text-align: center;
}

.adm-empty strong {
    display: block;
    margin-bottom: 4px;
    color: var(--adm-text);
}

.adm-public-query {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.adm-charge-doc {
    border: 1px solid var(--adm-border);
    border-radius: var(--adm-radius);
    background: #ffffff;
    overflow: hidden;
}

.adm-charge-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-bottom: 2px solid var(--adm-primary);
    background: var(--adm-surface-soft);
}

.adm-charge-head img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border-radius: 50%;
    background: #ffffff;
}

.adm-charge-head strong {
    display: block;
    font-size: 15px;
}

.adm-charge-head span {
    display: block;
    color: var(--adm-muted);
    font-size: 13px;
}

.adm-charge-doc h3 {
    margin: 18px 16px 8px;
    font-size: 18px;
}

.adm-charge-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0 16px 16px;
}

.adm-charge-grid div,
.adm-pix-box {
    padding: 12px;
    border: 1px solid var(--adm-border);
    border-radius: var(--adm-radius);
}

.adm-charge-grid span,
.adm-pix-box span {
    display: block;
    color: var(--adm-muted);
    font-size: 12px;
    font-weight: 800;
}

.adm-charge-grid strong {
    display: block;
    margin-top: 4px;
    overflow-wrap: anywhere;
}

.adm-pix-box {
    display: flex;
    gap: 14px;
    align-items: center;
    margin: 0 16px 16px;
    background: #ffffff;
}

.adm-qr {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 3px solid #111827;
    color: #111827;
    font-weight: 900;
}

.adm-pix-box code {
    display: block;
    margin: 6px 0;
    padding: 8px;
    border-radius: 6px;
    background: var(--adm-surface-soft);
    overflow-wrap: anywhere;
    font-size: 12px;
}

.adm-pix-box small {
    display: block;
    color: var(--adm-muted);
}

.adm-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(15, 23, 42, 0.55);
}

.adm-modal {
    width: min(620px, 100%);
    max-height: min(780px, 92vh);
    overflow-y: auto;
    border-radius: var(--adm-radius);
    background: #ffffff;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.25);
}

.adm-modal-header,
.adm-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--adm-border);
}

.adm-modal-header h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
}

.adm-modal-body {
    padding: 20px;
}

.adm-modal-footer {
    justify-content: flex-end;
    border-top: 1px solid var(--adm-border);
    border-bottom: 0;
}

.adm-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    max-width: min(380px, calc(100vw - 32px));
    padding: 12px 16px;
    border-radius: var(--adm-radius);
    background: #111827;
    color: #ffffff;
    box-shadow: var(--adm-shadow);
    font-size: 14px;
    font-weight: 700;
    transform: translateY(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

.adm-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.adm-backdrop {
    display: none;
}

.adm-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1180px) {
    .adm-grid.four {
        grid-template-columns: repeat(2, minmax(210px, 1fr));
    }

    .adm-grid.two,
    .adm-calendar-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 782px) {
    body.admin-bar .adm-sidebar {
        top: 46px;
        height: calc(100vh - 46px);
    }

    body.admin-bar .adm-topbar {
        top: 46px;
    }
}

@media (max-width: 760px) {
    .adm-sidebar {
        transform: translateX(-100%);
        transition: transform 180ms ease;
    }

    .adm-sidebar.open {
        transform: translateX(0);
    }

    .adm-backdrop.open {
        position: fixed;
        inset: 0;
        z-index: 15;
        display: block;
        background: rgba(15, 23, 42, 0.38);
    }

    .adm-main {
        margin-left: 0;
    }

    .adm-menu-toggle {
        width: 40px;
        height: 40px;
        display: inline-grid;
        place-items: center;
        flex: 0 0 auto;
        border: 1px solid var(--adm-border);
        border-radius: var(--adm-radius);
        background: #ffffff;
        color: var(--adm-text);
    }

    .adm-topbar {
        align-items: flex-start;
        min-height: auto;
        padding: 14px 16px;
    }

    .adm-title-group h1 {
        font-size: 19px;
    }

    .adm-content {
        padding: 18px 16px 28px;
    }

    .adm-grid.four,
    .adm-grid.three {
        grid-template-columns: 1fr;
    }

    .adm-form-row {
        grid-template-columns: 1fr;
    }

    .adm-toolbar {
        align-items: stretch;
    }

    .adm-filters,
    .adm-topbar-actions,
    .adm-toolbar .adm-input,
    .adm-toolbar .adm-select,
    .adm-btn {
        width: 100%;
    }

    .adm-calendar-day {
        min-height: 52px;
        padding: 6px;
    }

    .adm-landing {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .adm-landing-logo-wrap {
        margin: 0 auto;
    }

    .adm-landing-copy h2 {
        font-size: 26px;
    }

    .adm-public-query {
        grid-template-columns: 1fr;
    }

    .adm-charge-grid {
        grid-template-columns: 1fr;
    }

    .adm-pix-box {
        align-items: flex-start;
        flex-direction: column;
    }
}
