/***** Estilos de generar Extractos *****/

:root {
    /* Colores base globales */
    --bg: #161616;
    --panel: rgba(255, 255, 255, 0.03);
    --panel-border: rgba(255, 255, 255, 0.06);
    --muted: #b0b0b0;
    --muted2: #8e9aa3;
    --cyan: #00a2e0;
    --orange: #fe9b07;
    /* Colores para las tarjetas (verdes azulados) */
    --teal-card: rgba(0, 156, 113, 0.12);
    --teal-border: rgba(0, 156, 113, 0.18);
    --teal: #009c71;
}

.dashboard-extracto {
    background: var(--bg);
    color: #fff;
    padding: 20px 30px 40px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0 -35px 0 -35px !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    border: none !important;
    box-shadow: none !important;
}

/* Cabecera superior (Título principal y Resumen) */
.header-extracto {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    padding-bottom: 0;
    border-bottom: none;
}

.main-title-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: var(--cyan);
    line-height: 1.1;
}

.main-title-container p {
    font-size: 13px;
    color: #fff;
    margin: 6px 0 0;
    font-weight: 600;
}

.header-extracto {
    border-bottom: 2px solid var(--cyan);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

/* Resumen superior (Métrica grande naranja y Convenios) */
.top-summary {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-top: 6px;
    margin-bottom: 10px;
}

.huge-metric {
    border-left: 6px solid var(--orange);
    padding-left: 14px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.huge-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--orange);
    display: block;
    line-height: .9;
    letter-spacing: 0.2px;
}

.huge-label {
    font-size: 12px;
    color: #ffffff;
    margin-top: 8px;
    display: block;
    opacity: .8;
    text-transform: none;
    letter-spacing: .4px;
    font-weight: 400;
}

/* Caja de convenios con scroll horizontal */
.convenios-pill-box {
    flex: 1;
    max-width: 720px;
    text-align: left;
    background: #1d3444ff;
    padding: 12px 16px;
    border-radius: 12px;
}

.convenios-pill-title {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: .4px;
}

.pill-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 6px;
}

/* Estilo del scrollbar para los convenios */
.pill-container::-webkit-scrollbar {
    height: 4px;
}

.pill-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.pill-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Pastillas individuales de id de convenio */
.pill-id {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    min-width: 32px;
    height: 24px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    white-space: nowrap;
}

.section-header-extracto {
    font-size: 28px;
    font-weight: 600;
    margin: 14px 0 14px;
    color: #ffffff;
}

/* Grilla de 3 tarjetas verticales */
.cards-grid {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.vertical-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Encabezado oscuro de la tarjeta */
.card-header-v2 {
    background: rgba(0, 156, 113, 0.08);
    border-radius: 20px 20px 0 0;
    padding: 6px 10px;
    z-index: 2;
    border: 1px solid rgba(0, 156, 113, 0.15);
    border-bottom: 1px solid rgba(0, 156, 113, 0.1);
}

.card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0;
    display: block;
    text-align: center;
    text-transform: capitalize;
}

/* Cuerpo de la tarjeta */
.card-body-v2 {
    background: rgba(63, 141, 119, 0.34);
    border: 1px solid rgba(0, 156, 113, 0.15);
    border-top: none;
    border-radius: 0 0 24px 24px;
    padding: 12px 10px;
    flex: 1;
    backdrop-filter: blur(2px);
}

.sub-panel {
    background: transparent;
    padding: 4px 0;
    margin-bottom: 6px;
    text-align: center;
}


.sub-panel-label,
.inline-metric-label {
    font-size: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    padding: 3px 12px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 4px;
    text-transform: none;
    letter-spacing: .3px;
    font-weight: 400;
    opacity: .8;
}


.sub-panel-value {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: .2px;
    display: block;
}

.inline-metric {
    margin-top: 8px;
    text-align: center;
}

.inline-metric-val {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 0px;
}

/* Clase para hacer los decimales más pequeños */
.decimal-small {
    font-size: 0.75em;
    opacity: 0.6;
}

/* Iconos de ayuda (?) estilo tooltip */
.tooltip-icon {
    color: var(--teal);
    font-size: 13px;
    margin-left: 6px;
    cursor: pointer;
    opacity: .9;
}

/* Banner del periodo Estilo Azul */
.banner-periodo {
    margin-top: 25px;
    background: rgba(0, 50, 70, 0.4);
    /* Fondo azul oscuro profundo */
    border: 1px solid rgba(0, 162, 224, 0.2);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;

}

.banner-header-v2 {
    padding: 0 0 10px 0;
    text-align: center;
}

.banner-body-v2 {
    background: rgba(0, 162, 224, 0.12);
    /* Bandeja azul traslúcida */
    border-radius: 18px;
    padding: 18px 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    backdrop-filter: blur(4px);
    width: 100%;
    max-width: 1400px;
}

.banner-title {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    opacity: .9;
}

/* Azul brillante para las fechas */
.banner-title span {
    color: #00e0ff;
    font-weight: 700;
}


.banner-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-item-label {
    font-size: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    /* Píldora sutil */
    padding: 2px 12px;
    border-radius: 999px;
    margin-bottom: 6px;
    opacity: .8;
}

.banner-item-value {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Estilos para la nueva tabla */
.table-container-extracto {
    margin-top: 25px;
    background: rgba(0, 50, 70, 0.2);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(0, 162, 224, 0.1);
}

.table-extracto {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-collapse: collapse;
    /* Forzar que no haya espacios entre filas */
    background: transparent;
    color: #fff;
}

/* Espacio superior para separar el thead del tbody */
.table-extracto thead th {
    padding-bottom: 2px !important;
}

.table-extracto thead,
.table-extracto thead tr {
    background: transparent !important;
    border: none !important;
}

.table-extracto thead th {
    background: transparent !important;
    border: none !important;
    padding: 0 4px !important;
    /* Espacio horizontal de 4px entre celdas */
    text-align: center;
    vertical-align: middle;
}

.th-pill {
    background: var(--cyan);
    color: #fff;
    padding: 8px 5px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    display: block;
    width: 100%;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin: 0;
    text-align: center;
}

.table-extracto thead th:first-child .th-pill {
    border-top-left-radius: 15px;
}

.table-extracto thead th:last-child .th-pill {
    border-top-right-radius: 15px;
}

.dashboard-extracto .table-extracto tbody {
    background: #1a3b4f;
}

.dashboard-extracto .table-extracto tbody tr.odd,
.dashboard-extracto .table-extracto tbody tr.even {
    background-color: #1a3b4f !important;
}

.dashboard-extracto .table-extracto tbody tr td {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 8px 10px !important;
    font-size: 13.5px !important;
    text-align: center !important;
    vertical-align: middle !important;
    color: #fff !important;
}

/* Esquinas redondeadas para el contenedor de registros */
.table-extracto tbody tr:first-child td:first-child {
    border-top-left-radius: 12px;
}

.table-extracto tbody tr:first-child td:last-child {
    border-top-right-radius: 12px;
}

.table-extracto tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.table-extracto tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

.table-extracto tbody tr:last-child td {
    border-bottom: none !important;
}

.table-extracto tbody tr:hover td {
    background: rgba(255, 255, 255, 0.04) !important;
}

/* Fila de Total */
.dashboard-extracto .table-extracto tfoot tr,
.dashboard-extracto .table-extracto .total-row-v2 {
    background: var(--cyan) !important;
    border: none !important;
    color: #003246 !important;
    position: sticky;
    bottom: -1px;
    z-index: 10;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 20px !important;
}

.dashboard-extracto .table-extracto tfoot td,
.dashboard-extracto .table-extracto .total-row-v2 td {
    background: var(--cyan) !important;
    border: none !important;
    vertical-align: middle !important;
    text-align: center !important;
    font-weight: 800 !important;
    color: #003246 !important;
    font-size: 14.5px !important;
    padding: 6px 10px !important;
    /* Matched table content padding */
}

/* Excepción para la etiqueta "Total" */
.dashboard-extracto .table-extracto tfoot td[colspan],
.dashboard-extracto .table-extracto .total-label-cell {
    background: var(--cyan) !important;
}

.dashboard-extracto .total-pill {
    background: #fff !important;
    color: var(--cyan) !important;
    padding: 5px 20px !important;
    border-radius: 20px !important;
    font-weight: 900 !important;
    font-size: 14px !important;
    display: inline-block !important;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}


.dashboard-extracto .table-extracto tfoot tr td:first-child {
    border-top-left-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
}

.dashboard-extracto .table-extracto tfoot tr td:last-child {
    border-top-right-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
}

/* Responsive */
@media (max-width: 1100px) {
    .top-summary {
        flex-direction: column;
    }

    .huge-metric {
        min-width: unset;
    }

    .cards-grid {
        flex-direction: column;
    }

    .banner-item {
        min-width: 46%;
    }

    .table-extracto {
        font-size: 10px;
    }

    .th-pill {
        padding: 4px 8px;
        font-size: 9px;
    }
}

.dashboard-extracto .dataTables_wrapper {
    color: #fff;
    padding: 20px 0;
}

.dashboard-extracto .dataTables_length,
.dashboard-extracto .dataTables_filter {
    padding: 10px;
    margin-bottom: 15px;
}

.dashboard-extracto .dataTables_length label,
.dashboard-extracto .dataTables_filter label {
    color: #fff;
    font-weight: 400;
}

.dashboard-extracto .dataTables_length select,
.dashboard-extracto .dataTables_filter input {
    background-color: #1a3141;
    border: 1px solid rgba(0, 162, 224, 0.3);
    border-radius: 10px;
    color: #fff;
    padding: 5px 10px;
    outline: none;
    transition: border-color 0.3s;
}

.dashboard-extracto .dataTables_length select option {
    background-color: #1a3141;
    color: #fff;
}

.dashboard-extracto .dataTables_length select:focus,
.dashboard-extracto .dataTables_filter input:focus {
    border-color: #00a2e0;
}

.dashboard-extracto .dataTables_info,
.dashboard-extracto .dataTables_paginate {
    padding: 15px 10px;
    color: #fff;
}

.dashboard-extracto .dataTables_info {
    font-size: 0.9em;
    opacity: 0.8;
    border-top: none !important;
}

.dashboard-extracto .dataTables_paginate {
    display: flex;
    gap: 5px;
}

.dashboard-extracto .dataTables_paginate .paginate_button {
    background: transparent !important;
    border: none !important;
    color: #949ba2 !important;
    padding: 3px 10px !important;
    margin: 0 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.dashboard-extracto .dataTables_paginate .paginate_button:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.dashboard-extracto .dataTables_paginate .paginate_button.current {
    color: #00a2e0 !important;
    background: transparent !important;
    font-weight: 700;
}

.dashboard-extracto .dataTables_paginate .paginate_button.disabled {
    opacity: 0.3;
    cursor: default;
}

.dashboard-extracto #extracto_tabla_container {
    overflow-x: auto;
    padding-bottom: 20px;
}

.dashboard-extracto .table-extracto.dataTable,
.dashboard-extracto .table-extracto.dataTable.no-footer,
.dashboard-extracto .dataTables_wrapper,
.dashboard-extracto .dataTables_wrapper .dataTables_scrollBody {
    border-collapse: separate !important;
    border-spacing: 0 2px !important;
    margin: 1px 0 !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.dashboard-extracto .dataTables_wrapper::after {
    display: none !important;
}

/**** Estilos PDF *****/

@media print {
    @page {
        margin: 0mm;
        margin-header: 0mm;
        margin-top: 40mm;
        margin-bottom: 20mm;
        header: html_headerBanner;
    }
}

/* Estilos PDF */
.pdf-body {
    font-family: 'montserrat-buro', sans-serif;
    margin: 0;
    padding: 0;
    color: #1a1a1a;
}

.header-banner-pdf {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.header-left-pdf {
    width: 65%;
    background-color: #112D3E;
    vertical-align: top;
    padding: 0;
    height: 110px;
}

.header-right-pdf {
    width: 35%;
    background-color: #0097D7;
    vertical-align: top;
    text-align: center;
    padding: 25px 20px 10px 20px;
    height: 78px;
}

.header-spacer-left-pdf {
    background-color: transparent;
    height: 0;
    padding: 0;
}

.header-right-extension-pdf {
    background-color: #0097D7;
    border-bottom-left-radius: 80px;
    height: 18px;
    padding: 0;
    line-height: 0;
    font-size: 0;
}

.h-banner-inner {
    width: 100%;
    background-color: #112D3E;
    height: 110px;
}

.h-banner-content {
    background-color: #112D3E;
    padding: 20px 30px;
    vertical-align: middle;
}

.h-title-pdf {
    color: #0097D7;
    font-size: 32pt;
    font-weight: bold;
    margin: 0;
    line-height: 1;
}

.h-sub-pdf {
    color: white;
    font-size: 10pt;
    margin-top: 8px;
    font-weight: normal;
}

.header-icon-box-pdf {
    padding: 5px;
    margin-right: 15px;
}

.header-icon-pdf {
    width: 36px;
    vertical-align: middle;
}

.logo-img-pdf {
    max-height: 60px;
    max-width: 180px;
}

.intro-pdf {
    padding: 20px 25px 0 25px;
    font-size: 10pt;
    color: #56636b;
    line-height: 1.5;
    text-align: justify;
}

.top-table-pdf {
    width: 100%;
    padding: 15px 25px 0 25px;
    table-layout: fixed;
    margin-top: 25px;
    margin-bottom: 40px;
}

.entity-name-pdf {
    font-size: 22pt;
    font-weight: 800;
    color: #113B6B;
    font-style: italic;
    margin: 0;
}

.faltante-pdf {
    color: #fe9b07;
    font-size: 20pt;
    font-weight: bold;
}

.faltante-l-pdf {
    font-size: 9pt;
    color: #6c757d;
    margin-top: 2px;
}

.orange-pill-container-pdf {
    width: 10px;
    height: 35px;
    background-color: #fe9b07;
}

.convbox-pdf {
    border: none;
    background-color: #bda877;
    border-radius: 10pt;
    border-collapse: separate;
    width: 100%;
    color: white;
}

.convbox-td-pdf {
    padding: 8px 12px;
    text-align: left;
}

.conv-title-pdf {
    font-weight: bold;
    font-size: 9pt;
    margin-bottom: 4px;
    display: block;
}

.conv-list-pdf {
    display: block;
    margin-top: 4px;
    font-size: 9pt;
    line-height: 1.4;
}

.section-container-pdf {
    margin: 25px 25px 0 25px;
    background-color: #d9efe7;
    border-radius: 16px;
    padding: 15px;
}

.section-container-pdf h3 {
    margin: 0 0 10px 0;
    color: #1c7f63;
    font-size: 14pt;
    font-weight: bold;
    text-align: center;
}

.metrics-table-pdf {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px 0;
    table-layout: fixed;
}

.pill-pdf {
    background: transparent;
    color: #333;
    border-radius: 0;
    padding: 10px 5px;
    text-align: center;
    vertical-align: top;
    border: 0;
}

.pill-table-pdf {
    border-collapse: separate;
    border-radius: 12px !important;
    background-color: #009c71;
    margin: 0 auto 12px auto;
    border: 0.1mm solid #009c71;
}

.pill-table-pdf td {
    padding: 2px 8px;
    color: #ffffff;
    font-size: 13px;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
}

.pill-value-pdf {
    display: block;
    font-size: 14pt;
    font-weight: bold;
    color: #113B6B;
    margin: 0;
    padding: 0;
}

.blue-container-pdf {
    margin: 25px 25px 20px 25px;
    background-color: #e3f2fd;
    border-radius: 18px;
    padding: 15px;
}

.blue-container-pdf h4 {
    margin: 0 0 10px 0;
    color: #0a6fb6;
    font-weight: bold;
    font-size: 13pt;
    text-align: center;
}

.blue-metrics-table-pdf {
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px 0;
}

.bpill-pdf {
    background: transparent;
    color: #333;
    border-radius: 0;
    padding: 8px 4px;
    text-align: center;
    vertical-align: top;
    border: 0;
}

.bpill-table-pdf {
    border-collapse: separate;
    border-radius: 4mm;
    background-color: #1a9bff;
    margin: 0 auto 5px auto;
    border: 0.1mm solid #1a9bff;
}

.bpill-table-pdf td {
    padding: 2px 8px;
    color: #ffffff;
    font-size: 13px;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
}

.bpill-value-pdf {
    display: block;
    font-size: 11pt;
    font-weight: bold;
    color: #113B6B;
    margin: 0;
    padding: 0;
}

.footer-pdf {
    font-size: 9pt;
    color: #888;
    text-align: center;
    padding: 10px 25px;
    border-top: 1px solid #e6eaee;
}

.pagebreak {
    page-break-before: always;
}

.section_title_pdf {
    font-size: 15pt;
    font-weight: bold;
    color: #113B6B;
    padding: 20px 25px 10px 25px;
}

.table_detalle_pdf {
    width: 92%;
    margin: 0 auto 20px auto;
    border-collapse: collapse;
    font-size: 9.5pt;
    background-color: #f2f8fc;
    border-radius: 12px;
    color: #333333;
    overflow: hidden;
}

.table_detalle_pdf th {
    background-color: #19A1DD;
    color: #fff;
    padding: 12px 10px;
    text-align: center;
    font-weight: bold;
}

/* Líneas divisorias muy sutiles para los datos */
.table_detalle_pdf td {
    padding: 10px 10px;
    border-bottom: 1px solid #dce8f0;
}

.table_detalle_pdf tbody tr:last-child td {
    border-bottom: none;
}

.table_detalle_pdf tfoot td {
    border-bottom: none;
    border-top: 2px solid #dce8f0;
}

.pdf-convenio-pill {
    color: #ffffff;
    font-size: 9pt;
    font-weight: bold;
    white-space: nowrap;
}

.pdf-convenio-separator {
    color: #ffffff;
}

.h-banner-inner {
    width: 100%;
    background-color: #112D3E;
    height: 110px;
}

.h-banner-content {
    background-color: #112D3E;
    padding: 20px 30px;
    vertical-align: middle;
}

.top-table-left-col {
    width: 40%;
    vertical-align: top;
}

.top-table-right-col {
    width: 60%;
    vertical-align: top;
    padding-left: 20px;
}

.entity-info-table {
    margin-top: 15px;
}

.pill-col {
    width: 33.33%;
    text-align: center;
    vertical-align: top;
}

.pill-container-col {
    padding-right: 10px;
    vertical-align: middle;
}

.orange-pill-v {
    line-height: 1px;
    font-size: 1px;
}

.val-middle {
    vertical-align: middle;
}

.w-100 {
    width: 100%;
}

.p-top-15 {
    padding-top: 15px;
}

.spacer-16 {
    width: 16.66%;
}

.spacer-33 {
    width: 33.33%;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.fw-bold {
    font-weight: bold;
}

.table-v2-container {
    margin-top: 20px;
}

.table-v2 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px;
    color: #fff;
}

.table-v2-thead-tr {
    background-color: #00a2e0;
    color: #fff;
}

.table-v2-th-first {
    border-radius: 5px 0 0 5px;
    padding: 10px;
}

.table-v2-th {
    padding: 10px;
}

.table-v2-th-last {
    border-radius: 0 5px 5px 0;
    padding: 10px;
}

.table-v2-tr-odd {
    background-color: rgba(255, 255, 255, 0.03);
}

.table-v2-td {
    padding: 10px;
    text-align: center;
}

.table-v2-td-right {
    padding: 10px;
    text-align: right;
}

.table-v2-td-total {
    padding: 10px;
    text-align: right;
    font-weight: bold;
    color: #00a2e0;
}

.table-v2-tfoot-tr {
    background-color: #00a2e0;
    font-weight: bold;
    color: #fff;
}

.table-v2-tfoot-label-col {
    text-align: center;
    border-radius: 20px 0 0 20px;
    padding: 5px;
}

.table-v2-tfoot-label {
    background: #fff;
    color: #00a2e0;
    padding: 2px 25px;
    border-radius: 15px;
    font-size: 14px;
}

.table-v2-tfoot-val {
    text-align: right;
    padding: 10px;
}

.table-v2-tfoot-val-last {
    text-align: right;
    border-radius: 0 20px 20px 0;
    padding: 10px;
}

.no-records {
    text-align: center;
    padding: 20px;
    color: #888;
}




/*** Estilos para Histórico de Extractos *****/
.historico-extracto-form-row {
    margin-top: 20px;
}

.historico-extracto-form-row form {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

.historico-extracto-label {
    color: #fff;
    opacity: 0.8;
    font-size: 13px;
    margin-bottom: 5px;
}

.historico-extracto-select {
    background: var(--bg) !important;
    border: 1px solid #2d4a5d !important;
    color: #fff !important;
    border-radius: 8px !important;
    height: 38px !important;
}

.historico-extracto-btn {
    background: #1d3444 !important;
    border: 1px solid #2d4a5d !important;
    border-radius: 8px !important;
    padding: 0 !important;
    height: 38px !important;
    width: 45px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.historico-extracto-container {
    display: none;
    margin-top: 30px;
}

.historico-extracto-section-title {
    font-size: 24px;
    margin-bottom: 20px;

    de Extractos*/ .historico-extracto-form-row {
        margin-top: 20px;
    }

    .historico-extracto-form-row form {
        display: flex;
        align-items: flex-end;
        flex-wrap: wrap;
    }

    .historico-extracto-label {
        color: #fff;
        opacity: 0.8;
        font-size: 13px;
        margin-bottom: 5px;
    }

    .historico-extracto-select {
        background: var(--bg) !important;
        border: 1px solid #2d4a5d !important;
        color: #fff !important;
        border-radius: 8px !important;
        height: 38px !important;
    }

    .historico-extracto-btn {
        background: #1d3444 !important;
        border: 1px solid #2d4a5d !important;
        border-radius: 8px !important;
        padding: 0 !important;
        height: 38px !important;
        width: 45px !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .historico-extracto-container {
        display: none;
        margin-top: 30px;
    }

    .historico-extracto-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}