:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --sidebar: #0b1220;
    --background: #f8fafc;
    --white: #fff;
    --border: #e2e8f0;
    --text: #0f172a;
    --muted: #64748b;
    --green: #16a34a;
    --orange: #d97706;
    --red: #dc2626;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--background);
    color: var(--text);
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.app {
    min-height: 100vh;
}

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 100;
    width: 260px;
    display: flex;
    flex-direction: column;
    padding: 22px 15px;
    background: var(--sidebar);
    color: #fff;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 10px;
    margin-bottom: 25px;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    border-radius: 11px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    font-weight: 800;
}

.brand-name strong,
.brand-name span {
    display: block;
}

.brand-name strong {
    font-size: 18px
}

.brand-name span {
    margin-top: 3px;
    color: #60a5fa;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px
}

.company-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
}

.company-avatar,
.user-avatar {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}

.company-avatar {
    width: 34px;
    height: 34px
}

.user-avatar {
    width: 36px;
    height: 36px
}

.company-mini strong,
.company-mini span,
.user strong,
.user span {
    display: block
}

.company-mini strong,
.user strong {
    font-size: 11px
}

.company-mini span,
.user span {
    margin-top: 3px;
    color: #64748b;
    font-size: 9px
}

.menu {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.menu-title {
    margin: 18px 12px 7px;
    color: #475569;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    white-space: nowrap
}

.menu-item {
    width: 100%;
    min-height: 42px;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
    padding: 11px 13px;
    margin-bottom: 3px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
    text-decoration: none;
    transition: .2s;
}

.menu-item:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff
}

.menu-item.active {
    background: var(--primary);
    color: #fff
}

.menu-icon {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center
}

.menu-item>span:not(.menu-icon) {
    min-width: 0;
    text-align: left;
    white-space: normal
}

.sidebar-footer {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.system-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    color: #64748b;
    font-size: 10px
}

.status-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: #22c55e
}

.system-status.online .status-dot {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .12)
}

.system-status.offline {
    color: #f87171
}

.system-status.offline .status-dot {
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .12)
}

.logout {
    width: 100%;
    padding: 10px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #94a3b8;
    text-align: left
}

.logout:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff
}

.main {
    min-height: 100vh;
    margin-left: 260px
}

.header {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 35px;
    border-bottom: 1px solid var(--border);
    background: #fff
}

.header-left,
.header-right,
.user {
    display: flex;
    align-items: center
}

.header-left {
    gap: 15px
}

.header-right {
    gap: 20px
}

.header h1 {
    font-size: 20px
}

.header p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px
}

.mobile-menu,
.notification {
    border: 0;
    background: transparent
}

.mobile-menu {
    display: none;
    font-size: 22px
}

.notification {
    font-size: 17px
}

.user {
    gap: 10px
}

.content {
    max-width: 1400px;
    margin: auto;
    padding: 35px
}

.page-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px
}

.eyebrow {
    color: var(--primary);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px
}

.page-heading h2 {
    margin: 7px 0;
    font-size: 27px
}

.page-heading p {
    color: var(--muted);
    font-size: 12px
}

.heading-actions {
    display: flex;
    gap: 10px
}

.primary-button,
.secondary-button,
.primary-link {
    min-height: 42px;
    padding: 0 17px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.primary-button,
.primary-link {
    border: 0;
    background: var(--primary);
    color: #fff
}

.primary-button:hover,
.primary-link:hover {
    background: var(--primary-dark)
}

.secondary-button {
    border: 1px solid var(--border);
    background: #fff;
    color: #475569
}

.primary-button:disabled {
    opacity: .65;
    cursor: wait
}

.summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px
}

.summary-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: #fff
}

.summary-card span,
.summary-card strong {
    display: block
}

.summary-card span {
    color: var(--muted);
    font-size: 10px
}

.summary-card strong {
    margin-top: 7px;
    font-size: 22px
}

.summary-card.warning strong {
    color: var(--orange)
}

.filters,
.history-filters {
    display: flex;
    gap: 10px;
    padding: 15px;
    margin-bottom: 18px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: #fff
}

.search-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 8px
}

.search-box input,
.filters select,
.history-filters input,
.history-filters select {
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    padding: 0 12px;
    outline: 0;
    font-size: 11px
}

.search-box input {
    width: 100%;
    border: 0;
    padding: 0
}

.filters select {
    width: 220px
}

.search-box:focus-within,
.filters select:focus,
.history-filters input:focus,
.history-filters select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .08)
}

.table-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff
}

.table-header {
    padding: 20px;
    border-bottom: 1px solid var(--border)
}

.table-header h3 {
    font-size: 14px
}

.table-header p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px
}

.table-wrapper {
    overflow-x: auto
}

table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap
}

th {
    padding: 12px 14px;
    background: #f8fafc;
    color: #94a3b8;
    font-size: 9px;
    text-align: left;
    text-transform: uppercase
}

td {
    padding: 14px;
    border-top: 1px solid #f1f5f9;
    color: #475569;
    font-size: 10px
}

.product-name strong,
.product-name span {
    display: block
}

.product-name strong {
    color: var(--text);
    font-size: 11px
}

.product-name span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 9px
}

.stock-ok {
    font-weight: 700
}

.stock-warning,
.stock-low {
    color: var(--orange);
    font-weight: 700
}

.stock-low {
    color: var(--red)
}

.status {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 20px;
    font-size: 8px;
    font-weight: 700
}

.status.normal {
    background: #dcfce7;
    color: #15803d
}

.status.low {
    background: #fef3c7;
    color: #b45309
}

.status.zero {
    background: #fee2e2;
    color: #b91c1c
}

.actions {
    display: flex;
    gap: 6px
}

.action-button {
    padding: 7px 9px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff
}

.action-button:hover {
    background: #f1f5f9
}

.empty-state,
.empty-history {
    padding: 55px 20px;
    text-align: center;
    color: var(--muted)
}

.empty-icon {
    margin-bottom: 12px;
    font-size: 36px
}

.empty-state h3,
.empty-history strong {
    display: block;
    color: var(--text);
    font-size: 14px
}

.empty-state p,
.empty-history p {
    margin: 7px 0 15px;
    font-size: 11px
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, .65);
    backdrop-filter: blur(3px)
}

.modal-overlay.show {
    display: flex
}

.modal-content {
    width: 100%;
    max-width: 640px;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .2)
}

.history-modal {
    max-width: 880px
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 22px;
    border-bottom: 1px solid var(--border)
}

.modal-header h2 {
    margin-top: 5px;
    font-size: 19px
}

.close-button {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 7px;
    background: #f1f5f9;
    color: #475569;
    font-size: 20px
}

#movementForm {
    padding: 22px
}

.form-group {
    margin-bottom: 17px
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: #334155;
    font-size: 10px;
    font-weight: 700
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px;
    border: 1px solid var(--border);
    border-radius: 7px;
    outline: 0;
    font-size: 11px
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .08)
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.field-help {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 9px
}

.invalid {
    border-color: var(--red) !important
}

.field-error {
    display: block;
    margin-top: 5px;
    color: var(--red);
    font-size: 9px
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 23px
}

.history-filters {
    margin: 18px 22px
}

.history-filters input {
    flex: 1
}

.history-list {
    max-height: 55vh;
    overflow-y: auto;
    padding: 0 22px 22px
}

.history-item {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9
}

.history-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    font-weight: 700
}

.history-icon.entrada {
    background: #dcfce7;
    color: #15803d
}

.history-icon.saida {
    background: #fee2e2;
    color: #b91c1c
}

.history-icon.ajuste {
    background: #eff6ff;
    color: #2563eb
}

.history-info strong,
.history-info span {
    display: block
}

.history-info strong {
    font-size: 11px
}

.history-info span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 9px
}

.history-value {
    text-align: right
}

.history-value strong,
.history-value span {
    display: block
}

.history-value strong {
    font-size: 11px
}

.history-value span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 9px
}

.toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 2000;
    max-width: min(380px, calc(100vw - 32px));
    padding: 13px 16px;
    border-radius: 9px;
    background: #0f172a;
    color: #fff;
    font-size: 11px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .2s;
    box-shadow: 0 14px 35px rgba(15, 23, 42, .22)
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.toast.success {
    background: #166534
}

.toast.error {
    background: #991b1b
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(15, 23, 42, .55);
    opacity: 0;
    visibility: hidden;
    transition: .25s
}

.sidebar-overlay.show {
    opacity: 1;
    visibility: visible
}

body.modal-open,
body.sidebar-open {
    overflow: hidden
}

[hidden] {
    display: none !important
}

@media(max-width:1100px) {
    .summary {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:850px) {
    .sidebar {
        transform: translateX(-100%);
        transition: .25s
    }

    .sidebar.open {
        transform: translateX(0)
    }

    .main {
        margin-left: 0
    }

    .mobile-menu {
        display: block
    }

    .content {
        padding: 25px 20px
    }

    .sidebar-overlay {
        display: block
    }
}

@media(max-width:600px) {
    .header {
        padding: 0 18px
    }

    .user>div:last-child {
        display: none
    }

    .page-heading {
        align-items: stretch;
        flex-direction: column
    }

    .heading-actions {
        display: grid;
        grid-template-columns: 1fr
    }

    .summary {
        grid-template-columns: 1fr
    }

    .filters,
    .history-filters {
        flex-direction: column
    }

    .filters select {
        width: 100%
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .modal-actions {
        flex-direction: column-reverse
    }

    .modal-actions button {
        width: 100%
    }

    .history-item {
        grid-template-columns: 38px 1fr
    }

    .history-value {
        grid-column: 2;
        text-align: left
    }

    .toast {
        right: 16px;
        bottom: 16px
    }
}

/* =========================================================
   ENTRADAS / COMPRAS
   ========================================================= */
.filters input[type="date"] {
    height: 42px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: 0;
    color: #475569;
    font-size: 11px
}

.filters input[type="date"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .08)
}

.table-header {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.purchase-modal {
    max-width: 1080px
}

.details-modal {
    max-width: 820px
}

#purchaseForm {
    padding: 0 22px 22px
}

.form-section {
    padding: 22px 0;
    border-bottom: 1px solid var(--border)
}

.form-section:last-of-type {
    border-bottom: 0
}

.form-section>h3,
.section-title h3 {
    font-size: 14px
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px
}

.section-title p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px
}

.form-grid.three {
    grid-template-columns: repeat(3, 1fr)
}

.form-grid.four {
    grid-template-columns: repeat(4, 1fr)
}

.span-2 {
    grid-column: span 2
}

.span-3 {
    grid-column: span 3
}

.items-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 9px
}

.items-table {
    min-width: 850px
}

.items-table select,
.items-table input {
    width: 100%;
    min-width: 100px;
    padding: 9px;
    border: 1px solid var(--border);
    border-radius: 6px;
    outline: 0;
    font-size: 10px
}

.items-table select {
    min-width: 250px
}

.items-table input:focus,
.items-table select:focus {
    border-color: var(--primary)
}

.item-total {
    color: var(--text);
    font-weight: 700
}

.remove-item {
    width: 30px;
    height: 30px;
    border: 1px solid #fecaca;
    border-radius: 6px;
    background: #fff;
    color: var(--red)
}

.empty-items {
    padding: 25px;
    text-align: center;
    color: var(--muted);
    font-size: 11px
}

.purchase-totals {
    display: flex;
    justify-content: flex-end;
    gap: 35px;
    padding: 18px;
    margin-top: 5px;
    border-radius: 9px;
    background: #f8fafc
}

.purchase-totals span,
.purchase-totals strong {
    display: block;
    text-align: right
}

.purchase-totals span {
    color: var(--muted);
    font-size: 10px
}

.purchase-totals strong {
    margin-top: 5px;
    font-size: 18px
}

.purchase-totals>div:last-child strong {
    color: var(--primary);
    font-size: 22px
}

.shortcut-bar {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 15px;
    margin-top: 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--muted);
    font-size: 10px
}

.shortcut-bar kbd,
.primary-button kbd {
    padding: 3px 6px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    background: #fff;
    color: #334155;
    font-weight: 700
}

.purchase-status {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 20px;
    font-size: 8px;
    font-weight: 700
}

.purchase-status.concluida {
    background: #dcfce7;
    color: #15803d
}

.purchase-status.rascunho {
    background: #fef3c7;
    color: #b45309
}

.purchase-status.cancelada {
    background: #fee2e2;
    color: #b91c1c
}

.details-content {
    padding: 22px
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px
}

.detail-card {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px
}

.detail-card span,
.detail-card strong {
    display: block
}

.detail-card span {
    color: var(--muted);
    font-size: 9px
}

.detail-card strong {
    margin-top: 5px;
    font-size: 11px
}

.details-items {
    overflow-x: auto
}

.details-items table {
    min-width: 650px
}

@media(max-width:900px) {

    .form-grid.three,
    .form-grid.four {
        grid-template-columns: 1fr 1fr
    }

    .span-3 {
        grid-column: span 2
    }
}

@media(max-width:600px) {

    .form-grid.three,
    .form-grid.four {
        grid-template-columns: 1fr
    }

    .span-2,
    .span-3 {
        grid-column: auto
    }

    .section-title {
        align-items: stretch;
        flex-direction: column
    }

    .purchase-totals {
        justify-content: space-between;
        gap: 15px
    }

    .shortcut-bar {
        gap: 12px
    }

    .detail-grid {
        grid-template-columns: 1fr
    }
}

.danger-button {
    min-height: 42px;
    padding: 0 17px;
    border: 0;
    border-radius: 8px;
    background: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: 700
}

.danger-button:hover {
    background: #b91c1c
}

.danger-button:disabled {
    opacity: .6;
    cursor: wait
}

.details-actions {
    padding: 0 22px 22px
}

.cancel-modal {
    max-width: 560px
}

.cancel-modal form {
    padding: 22px
}

.manager-error {
    padding: 10px;
    border-radius: 7px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 10px
}

.sale-status {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 20px;
    font-size: 8px;
    font-weight: 700
}

.sale-status.concluida {
    background: #dcfce7;
    color: #15803d
}

.sale-status.cancelada {
    background: #fee2e2;
    color: #b91c1c
}

.sale-status.aberta {
    background: #fef3c7;
    color: #b45309
}

.sale-actions {
    display: flex;
    gap: 5px
}

.sale-actions button {
    padding: 7px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff
}

.sale-actions button:hover {
    background: #eff6ff
}

.payment-list {
    display: grid;
    gap: 8px;
    margin-top: 18px
}

.payment-item {
    display: flex;
    justify-content: space-between;
    padding: 11px;
    border-radius: 7px;
    background: #f8fafc;
    font-size: 10px
}

.details-note {
    margin-top: 15px;
    padding: 12px;
    border-left: 3px solid var(--primary);
    background: #eff6ff;
    color: #475569;
    font-size: 10px
}

/* =========================================================
   REIMPRESSÃO E ENVIO DO COMPROVANTE
   ========================================================= */

.receipt-send-panel {
    margin: 0 22px 20px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #f8fafc;
}

.receipt-send-panel h3 {
    margin: 0 0 4px;
    color: var(--text);
    font-size: 14px;
}

.receipt-send-panel p {
    margin: 0 0 15px;
    color: var(--muted);
    font-size: 10px;
}

.receipt-send-panel label {
    display: block;
    margin: 11px 0 6px;
    color: #334155;
    font-size: 10px;
    font-weight: 700;
}

.receipt-customer-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
}

.receipt-customer-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .10);
}

.receipt-customer-search input,
.receipt-email-input {
    width: 100%;
    min-height: 43px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    background: #fff;
    color: var(--text);
    font: inherit;
}

.receipt-customer-search input {
    padding: 0;
    border: 0;
}

.receipt-email-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .10);
}

.receipt-customer-results {
    max-height: 225px;
    margin-top: 7px;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .10);
}

.receipt-customer-results[hidden] {
    display: none;
}

.receipt-customer-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3px 12px;
    width: 100%;
    padding: 11px 13px;
    border: 0;
    border-bottom: 1px solid #edf1f5;
    background: #fff;
    color: var(--text);
    text-align: left;
    cursor: pointer;
}

.receipt-customer-option:last-child {
    border-bottom: 0;
}

.receipt-customer-option:hover,
.receipt-customer-option:focus {
    background: #eff6ff;
    outline: none;
}

.receipt-customer-option strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.receipt-customer-option span,
.receipt-customer-option small,
.receipt-customer-empty {
    color: var(--muted);
    font-size: 9px;
}

.receipt-customer-option small {
    grid-column: 1 / -1;
}

.receipt-customer-empty {
    margin: 0;
    padding: 14px;
    text-align: center;
}

@media (max-width: 600px) {
    .receipt-send-panel {
        margin-right: 14px;
        margin-left: 14px;
        padding: 14px;
    }

    .details-actions button {
        width: 100%;
    }
}
/* Barra de rolagem do menu lateral (padrão consistente com o Dashboard) */
.menu {
    scrollbar-color: rgba(148, 163, 184, .28) transparent;
    scrollbar-width: thin;
}

.menu::-webkit-scrollbar {
    width: 5px;
}

.menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(148, 163, 184, .28);
}

