* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4f7fb;
    color: #17212b;
}

.login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at top left, rgba(45, 184, 223, .18), transparent 35%),
        linear-gradient(135deg, #f7fafc, #eef4f8);
}

.login-card {
    width: 420px;
    background: #ffffff;
    padding: 38px;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(15, 32, 48, .12);
    border: 1px solid #e2ebf2;
}

.logo-box {
    text-align: center;
    margin-bottom: 28px;
}

.logo-box h1 {
    font-size: 24px;
    color: #0c1824;
    letter-spacing: -1px;
}

.logo-box p {
    color: #6f7f8f;
    margin-top: 6px;
}

form {
    display: grid;
    gap: 12px;
}

label {
    font-size: 13px;
    color: #536475;
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    height: 46px;
    border: 1px solid #dce6ee;
    border-radius: 14px;
    padding: 0 14px;
    outline: none;
    font-size: 15px;
    background: #fbfdff;
}

textarea {
    height: 90px;
    padding-top: 12px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #0f6fbd;
    box-shadow: 0 0 0 4px rgba(15, 111, 189, .10);
}

button,
.btn {
    height: 46px;
    border: none;
    border-radius: 14px;
    background: #0c1824;
    color: white;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
}

button:hover,
.btn:hover {
    background: #0f6fbd;
}

.alert {
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 14px;
    font-size: 14px;
}

.alert.error {
    background: #ffecec;
    color: #b3261e;
}

.alert.success {
    background: #eafaf1;
    color: #12733b;
}

.layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px 1fr;
}

.sidebar {
    background: #0c1824;
    color: white;
    padding: 26px;
}

.side-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 34px;
}

.mini-logo{
    width:170px;
    height:55px;
    background:url("/pixcore_asset/logo2.png") no-repeat left center;
    background-size:contain;
    border-radius:0;
    box-shadow:none;
    flex-shrink:0;
}

.side-brand strong {
    display: block;
    letter-spacing: -0.5px;
}

.side-brand span {
    display: block;
    font-size: 12px;
    color: #91a4b8;
}

.sidebar nav {
    display: grid;
    gap: 8px;
}

.sidebar nav a {
    color: #b7c5d3;
    text-decoration: none;
    padding: 13px 14px;
    border-radius: 14px;
    font-weight: 600;
}

.sidebar nav a:hover,
.sidebar nav a.active {
    background: rgba(255,255,255,.08);
    color: white;
}

.main {
    padding: 34px;
}

.topbar {
    margin-bottom: 28px;
}

.topbar h1 {
    font-size: 32px;
    color: #0c1824;
    letter-spacing: -1px;
}

.topbar p {
    color: #6f7f8f;
    margin-top: 4px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 26px;
}

.stat-card {
    background: white;
    border: 1px solid #e2ebf2;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 14px 30px rgba(15, 32, 48, .05);
}

.stat-card span {
    display: block;
    color: #6f7f8f;
    font-size: 14px;
    margin-bottom: 12px;
}

.stat-card strong {
    font-size: 36px;
    color: #0c1824;
}

.panel {
    background: white;
    border: 1px solid #e2ebf2;
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 14px 30px rgba(15, 32, 48, .05);
}

.panel-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 20px;
}

.panel-head h2 {
    color: #0c1824;
    letter-spacing: -0.5px;
}

.panel-head p {
    color: #6f7f8f;
    margin-top: 4px;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    font-size: 13px;
    color: #647487;
    background: #f6f9fc;
    padding: 14px;
}

td {
    padding: 14px;
    border-top: 1px solid #edf2f6;
    color: #263442;
    font-size: 14px;
}

.badge {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef6ff;
    color: #0f6fbd;
    font-weight: 700;
    font-size: 12px;
}

.empty {
    text-align: center;
    color: #8a98a8;
    padding: 28px;
}

@media (max-width: 950px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-panel {
    background: white;
    border: 1px solid #e2ebf2;
    border-radius: 26px;
    padding: 24px;
    margin-bottom: 26px;
    box-shadow: 0 14px 30px rgba(15, 32, 48, .05);
}

.form-panel h2 {
    color: #0c1824;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.grid-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.grid-form .full {
    grid-column: 1 / -1;
}

.form-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
}

.badge.ok {
    background: #eafaf1;
    color: #12733b;
}

.badge.off {
    background: #f1f3f5;
    color: #6f7f8f;
}

.mini-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eef6ff;
    color: #0f6fbd;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.mini-btn:hover {
    background: #0f6fbd;
    color: white;
}

.badge.warning {
    background: #fff6df;
    color: #b7791f;
}

.badge.blue {
    background: #e9f3ff;
    color: #0f6fbd;
}

.mini-btn.success {
    background: #eafaf1;
    color: #12733b;
}

.mini-btn.success:hover {
    background: #12733b;
    color: white;
}

.mini-btn.blue {
    background: #e9f3ff;
    color: #0f6fbd;
}

.mini-btn.blue:hover {
    background: #0f6fbd;
    color: white;
}

.mini-btn.delete {
    background: #ffecec;
    color: #b3261e;
}

.mini-btn.delete:hover {
    background: #b3261e;
    color: white;
}

.action-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-light-action {
    background: #eef3f7;
    color: #0c1824;
    box-shadow: none;
}

.btn-light-action:hover {
    background: #dfe9f0;
    color: #0c1824;
}

@media print {
    body {
        background: white;
    }

    .sidebar,
    .topbar,
    .form-panel {
        display: none !important;
    }

    .layout {
        display: block;
    }

    .main {
        padding: 0;
    }

    .panel {
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .panel-head {
        display: block;
        margin-bottom: 18px;
    }

    table {
        font-size: 12px;
    }

    th,
    td {
        padding: 8px;
    }
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.day-check {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f6f9fc;
    border: 1px solid #dce6ee;
    border-radius: 14px;
    padding: 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: #263442;
}

.day-check input {
    width: auto;
    height: auto;
}

.day-check:hover {
    border-color: #0f6fbd;
    background: #eef6ff;
}

@media (max-width: 950px) {
    .days-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.copy-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.copy-box button {
    min-width: 110px;
}

/* ============================================================
   INVENTARIO
============================================================ */

.inventory-layout {
    display: grid;
    grid-template-columns: 1.4fr 380px;
    gap: 22px;
    align-items: start;
}

.product-preview {
    background: #f8fbfd;
    border: 1px solid #e2ebf2;
    border-radius: 24px;
    padding: 18px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.65);
}

.preview-image {
    width: 100%;
    height: 260px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px dashed #cfdbe5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 18px;
    color: #7b8b9a;
    font-weight: 700;
    text-align: center;
    padding: 10px;
}

.preview-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    background: white;
    display: block;
}

.preview-info h2 {
    font-size: 22px;
    color: #0c1824;
    margin-bottom: 8px;
}

.preview-info p {
    color: #5f7080;
    font-size: 14px;
    margin-bottom: 6px;
}

.stock-box {
    background: white;
    border: 1px solid #e2ebf2;
    border-radius: 18px;
    padding: 16px;
    margin-top: 12px;
}

.stock-box span {
    display: block;
    color: #6f7f8f;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.stock-box strong {
    font-size: 30px;
    color: #0c1824;
}

.preview-info h3 {
    margin-top: 18px;
    margin-bottom: 8px;
    color: #0c1824;
}

.technical-text {
    background: white;
    border: 1px solid #e2ebf2;
    border-radius: 18px;
    padding: 14px;
    min-height: 110px;
    white-space: pre-wrap;
    line-height: 1.5;
}

.badge.danger {
    background: #ffecec;
    color: #b3261e;
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12, 24, 36, .55);
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 9999;
}

.modal-card {
    width: min(760px, 96vw);
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
    border: 1px solid #e2ebf2;
}

.modal-card h2 {
    color: #0c1824;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.table-wrap table tbody tr {
    cursor: pointer;
}

.table-wrap table tbody tr:hover {
    background: #f6f9fc;
}

@media (max-width: 1100px) {
    .inventory-layout {
        grid-template-columns: 1fr;
    }

    .product-preview {
        order: -1;
    }
}

@media (max-width: 700px) {
    .panel-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .action-group {
        width: 100%;
    }

    .action-group button,
    .action-group .btn {
        width: 100%;
    }

    .modal-card {
        padding: 20px;
    }
}

/* ============================================================
   REPORTE INVENTARIO COMPACTO
============================================================ */

.report-page {
    padding: 18px;
    background: #f4f7fb;
    min-height: 100vh;
}

.report-header {
    background: white;
    border: 1px solid #e2ebf2;
    border-radius: 18px;
    padding: 14px 18px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.report-header h1 {
    color: #0c1824;
    font-size: 24px;
}

.report-header p {
    color: #6f7f8f;
    margin-top: 2px;
    font-size: 12px;
}

.report-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.report-summary div {
    background: white;
    border: 1px solid #e2ebf2;
    border-radius: 16px;
    padding: 12px;
}

.report-summary span {
    display: block;
    color: #6f7f8f;
    font-size: 12px;
    margin-bottom: 4px;
}

.report-summary strong {
    font-size: 24px;
    color: #0c1824;
}

.inventory-report-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.inventory-report-card {
    background: white;
    border: 1px solid #e2ebf2;
    border-radius: 16px;
    padding: 10px;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 10px;
    page-break-inside: avoid;
    break-inside: avoid;
    min-height: 170px;
}

.inventory-report-card.bajo {
    border-color: #f6c453;
    background: #fffaf0;
}

.inventory-report-card.agotado {
    border-color: #e5484d;
    background: #fff5f5;
}

.report-product-image {
    width: 96px;
    height: 96px;
    background: #eef3f7;
    border: 1px dashed #cfdbe5;
    border-radius: 12px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #7b8b9a;
    font-weight: 700;
    font-size: 11px;
    text-align: center;
}

.report-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
}

.report-product-info h2 {
    color: #0c1824;
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.1;
}

.report-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-bottom: 6px;
}

.report-meta span {
    background: #f6f9fc;
    border: 1px solid #e2ebf2;
    border-radius: 9px;
    padding: 5px 7px;
    color: #405060;
    font-size: 10px;
}

.report-alert {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 10px;
    margin-bottom: 6px;
}

.report-alert.ok {
    background: #eafaf1;
    color: #12733b;
}

.report-alert.warning {
    background: #fff6df;
    color: #b7791f;
}

.report-alert.danger {
    background: #ffecec;
    color: #b3261e;
}

.report-product-info h3 {
    color: #0c1824;
    margin-bottom: 3px;
    font-size: 12px;
}

.report-product-info p {
    white-space: pre-wrap;
    color: #536475;
    line-height: 1.25;
    font-size: 10.5px;
    max-height: 48px;
    overflow: hidden;
}

@media print {
    @page {
        size: A4;
        margin: 8mm;
    }

    body {
        background: white;
    }

    .report-page {
        padding: 0;
        background: white;
        min-height: auto;
    }

    .report-header {
        padding: 8px 10px;
        margin-bottom: 8px;
        border-radius: 10px;
        box-shadow: none;
    }

    .report-header h1 {
        font-size: 18px;
    }

    .report-header p {
        font-size: 10px;
    }

    .report-header button {
        display: none;
    }

    .report-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin-bottom: 8px;
    }

    .report-summary div {
        padding: 8px;
        border-radius: 10px;
        box-shadow: none;
    }

    .report-summary strong {
        font-size: 18px;
    }

    .inventory-report-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .inventory-report-card {
        grid-template-columns: 78px 1fr;
        gap: 7px;
        padding: 7px;
        min-height: 128px;
        border-radius: 10px;
        box-shadow: none;
    }

    .report-product-image {
        width: 78px;
        height: 78px;
        border-radius: 8px;
    }

    .report-product-info h2 {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .report-meta {
        gap: 3px;
        margin-bottom: 4px;
    }

    .report-meta span {
        font-size: 8px;
        padding: 3px 4px;
        border-radius: 6px;
    }

    .report-alert {
        font-size: 8px;
        padding: 3px 6px;
        margin-bottom: 4px;
    }

    .report-product-info h3 {
        font-size: 9px;
        margin-bottom: 2px;
    }

    .report-product-info p {
        font-size: 8px;
        line-height: 1.15;
        max-height: 28px;
    }
}

@media (max-width: 850px) {
    .inventory-report-grid {
        grid-template-columns: 1fr;
    }

    .inventory-report-card {
        grid-template-columns: 96px 1fr;
    }
}

/* ============================================================
   REPORTE ENTRADAS / SALIDAS
============================================================ */

.movement-report {
    display: grid;
    gap: 18px;
}

.movement-table-card,
.movement-chart-card {
    background: white;
    border: 1px solid #e2ebf2;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 14px 30px rgba(15, 32, 48, .05);
}

.movement-table-card h2,
.movement-chart-card h2 {
    color: #0c1824;
    margin-bottom: 14px;
    font-size: 20px;
}

.bar-chart {
    display: grid;
    gap: 10px;
}

.bar-row {
    display: grid;
    grid-template-columns: 230px 1fr 70px;
    gap: 12px;
    align-items: center;
}

.bar-label strong {
    display: block;
    color: #0c1824;
    font-size: 13px;
}

.bar-label span {
    display: block;
    color: #6f7f8f;
    font-size: 12px;
    margin-top: 2px;
}

.bar-track {
    height: 18px;
    background: #eef3f7;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid #dce6ee;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(135deg, #2fb8df, #0f6fbd);
    border-radius: 999px;
}

.bar-value {
    font-weight: 800;
    color: #0c1824;
    text-align: right;
}

@media print {
    .movement-table-card,
    .movement-chart-card {
        box-shadow: none;
        border-radius: 12px;
        padding: 10px;
    }

    .movement-table-card h2,
    .movement-chart-card h2 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .movement-table-card table th,
    .movement-table-card table td {
        font-size: 9px;
        padding: 5px;
    }

    .bar-row {
        grid-template-columns: 160px 1fr 45px;
        gap: 6px;
    }

    .bar-label strong {
        font-size: 9px;
    }

    .bar-label span {
        font-size: 8px;
    }

    .bar-track {
        height: 12px;
    }

    .bar-value {
        font-size: 9px;
    }
}

.inventory-head {
    align-items: flex-start;
    margin-bottom: 24px;
}

.inventory-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 620px;
}

.inventory-layout {
    clear: both;
    width: 100%;
}

/* ============================================================
   MULTI SELECT DIAS TECNICOS
============================================================ */

.multi-select {
    position: relative;
    width: 100%;
}

.multi-select-header {
    min-height: 52px;
    border: 1px solid #dce6ee;
    border-radius: 16px;
    background: #fbfdff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    cursor: pointer;
    transition: .2s;
}

.multi-select-header:hover {
    border-color: #0f6fbd;
}

.selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.placeholder-tag {
    color: #7b8b9a;
    font-size: 14px;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e9f3ff;
    color: #0f6fbd;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 700;
}

.dropdown-arrow {
    color: #7b8b9a;
    font-size: 18px;
}

.multi-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dce6ee;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 20px 45px rgba(15, 32, 48, .12);
    display: none;
    z-index: 999;
}

.multi-select-dropdown.show {
    display: block;
}

.multi-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: .2s;
}

.multi-option:hover {
    background: #f4f8fc;
}

.multi-option input {
    width: 18px;
    height: 18px;
}

.multi-option span {
    font-size: 14px;
    color: #17212b;
    font-weight: 600;
}

.multi-help {
    display: block;
    margin-top: 8px;
    color: #7b8b9a;
    font-size: 12px;
}

.dashboard-extra-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 22px;
    margin-bottom: 24px;
}

.inventory-bars {
    display: grid;
    gap: 14px;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 8px;
}

.dashboard-chart-panel {
    max-height: 330px;
}

.inventory-bar-row {
    display: grid;
    gap: 7px;
}

.inventory-bar-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
}

.inventory-bar-track {
    height: 12px;
    background: #eef4fa;
    border-radius: 999px;
    overflow: hidden;
}

.inventory-bar-fill {
    height: 100%;
    background: #0b74d1;
    border-radius: 999px;
}

.dashboard-scroll-panel {
    max-height: 330px;
}

.top-clients-scroll {
    max-height: 220px;
    overflow-y: auto;
    padding-right: 8px;
    display: grid;
    gap: 10px;
}

.top-client-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    background: #f6f9fc;
    border: 1px solid #e4edf5;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
}

.top-client-item strong {
    color: #0b74d1;
}

@media (max-width: 1000px) {
    .dashboard-extra-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   LOGO LOGIN
============================================================ */

.login-logo{
    display:block;
    width:170px;
    max-width:100%;
    height:auto;
    margin:0 auto 12px;
}

.login-subtitle{
    color:#6f7f8f;
    margin-top:8px;
    font-size:14px;
    font-weight:500;
}

/* ============================================================
   ASISTENTE DE INVENTARIO PIXCORE
============================================================ */

.pix-assistant-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(12,24,36,.42);
    backdrop-filter:blur(3px);
    align-items:center;
    justify-content:center;
    padding:24px;
    z-index:10000;
}

.pix-assistant-card{
    width:min(650px, 94vw);
    background:#ffffff;
    border:1px solid #dce8f2;
    border-radius:28px;
    box-shadow:0 30px 90px rgba(12,24,36,.28);
    padding:34px;
    position:relative;
}

.pix-assistant-close{
    position:absolute;
    top:18px;
    right:18px;
    width:38px;
    height:38px;
    border-radius:999px;
    background:#eef4fa;
    color:#536475;
    font-size:24px;
    line-height:1;
    padding:0;
}

.pix-assistant-close:hover{
    background:#dfe9f0;
    color:#0c1824;
}

.pix-assistant-head{
    display:grid;
    gap:14px;
    align-items:center;
    margin-bottom:20px;
    padding-right:44px;
}

.pix-assistant-logo{
    display:block;
    width:190px;
    max-width:100%;
    height:auto;
}

.pix-assistant-title{
    color:#0c1824;
    font-size:30px;
    line-height:1.1;
    letter-spacing:-1px;
    margin:0;
}

.pix-assistant-message{
    border-top:1px solid #e2ebf2;
    border-bottom:1px solid #e2ebf2;
    padding:22px 0;
    margin-bottom:22px;
}

.pix-assistant-message h2{
    color:#0c1824;
    font-size:28px;
    line-height:1.2;
    margin-bottom:14px;
    letter-spacing:-.8px;
}

.pix-assistant-message h2 span{
    color:#0f6fbd;
}

.pix-assistant-message p{
    color:#263442;
    font-size:20px;
    line-height:1.45;
}

.pix-assistant-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    align-items:center;
}

.pix-assistant-report-btn{
    min-height:58px;
    border:1px solid #cfe0ee;
    border-radius:18px;
    background:#ffffff;
    color:#0c1824;
    font-weight:800;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:12px 18px;
}

.pix-assistant-report-btn:hover{
    border-color:#0f6fbd;
    background:#eef6ff;
    color:#0f6fbd;
}

.pix-assistant-understood-btn{
    min-height:58px;
    border-radius:18px;
    background:#0f6fbd;
    color:#ffffff;
    font-size:17px;
}

.pix-assistant-understood-btn:hover{
    background:#0c1824;
}

.pix-assistant-note{
    margin-top:18px;
    color:#6f7f8f;
    font-size:13px;
    text-align:center;
}

@media (max-width:700px){
    .pix-assistant-card{
        padding:26px;
    }

    .pix-assistant-head{
        text-align:center;
        padding-right:0;
    }

    .pix-assistant-logo{
        margin:0 auto;
    }

    .pix-assistant-actions{
        grid-template-columns:1fr;
    }
}
