.tipo9-chart {
    display: flex !important;
    width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 0;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    color: #334155;
}

.tipo9-table-shell {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 0;
    flex: 1 1 auto;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dfe6ee;
    border-radius: 9px;
    background: #fff;
}

.tipo9-chart .dataTables_wrapper {
    display: flex;
    width: 100%;
    min-height: 0;
    flex: 1 1 auto;
    flex-direction: column;
    zoom: 1;
    white-space: nowrap;
}

.tipo9-chart .dataTables_scroll {
    display: flex;
    width: 100%;
    min-height: 0;
    flex: 1 1 auto;
    flex-direction: column;
    overflow: hidden;
}

.tipo9-chart .dataTables_scrollHeadInner,
.tipo9-chart .dataTables_scrollHeadInner > table,
.tipo9-chart .dataTables_scrollBody > table {
    min-width: 100% !important;
    min-width: max(100%, var(--tipo9-table-min-width, 100%)) !important;
}

.tipo9-chart .dataTables_scrollHead {
    border-bottom: 1px solid #d5dee7 !important;
    background: #eef2f6;
}

.tipo9-chart table.dataTable {
    min-width: 100%;
    margin: 0 !important;
    border: 0;
    border-collapse: separate !important;
    border-spacing: 0;
    color: #334155;
    font-size: 12px;
}

.tipo9-chart table.dataTable thead th {
    padding: 10px 24px 10px 11px;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    background: #eef2f6;
    color: #334155;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .025em;
    text-transform: none;
}

.tipo9-chart table.dataTable tbody td {
    padding: 9px 11px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #edf1f5;
    border-left: 0;
    background-color: #fff;
    color: #475569;
    vertical-align: middle;
}

.tipo9-chart table.dataTable tbody tr:nth-child(even) td {
    background-color: #fbfcfe;
}

.tipo9-chart table.dataTable tbody tr:hover td {
    background-color: #f5f8fb;
    color: #1e293b;
}

.tipo9-chart .dataTables_scrollBody {
    width: 100% !important;
    min-height: 0;
    flex: 1 1 auto;
    overflow-x: auto !important;
    overflow-y: auto !important;
    border-bottom: 0 !important;
    scrollbar-color: #cbd5e1 transparent;
    scrollbar-width: thin;
}

.tipo9-chart .dataTables_scrollBody::-webkit-scrollbar {
    width: 9px;
    height: 10px;
}

.tipo9-chart .dataTables_scrollBody::-webkit-scrollbar-track {
    border-radius: 999px;
    background: #eef2f6;
}

.tipo9-chart .dataTables_scrollBody::-webkit-scrollbar-thumb {
    border: 2px solid #eef2f6;
    border-radius: 999px;
    background: #94a3b8;
}

.tipo9-chart .dataTables_scrollBody::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

.tipo9-chart .tipo9-table__group td {
    padding: 7px 11px !important;
    border-bottom: 1px solid #dbe4ed !important;
    background: #eaf0f6 !important;
    color: #1e293b !important;
    font-size: 11px;
    letter-spacing: .03em;
}

.tipo9-chart td.details-control {
    width: 32px !important;
    min-width: 32px;
    background-color: #f8fafc;
    background-size: 16px 16px;
}

.tipo9-pagination {
    position: static;
    display: flex;
    width: 100%;
    min-height: 34px;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.tipo9-pagination__button {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbe3eb;
    border-radius: 7px;
    background: #fff;
    color: #475569;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}

.tipo9-pagination__button:hover,
.tipo9-pagination__button:focus {
    border-color: #fbbf24;
    background: #fffbeb;
    color: #92400e;
}

.tipo9-pagination__button.aDisabled {
    border-color: #edf1f5;
    background: #f8fafc;
    color: #cbd5e1;
    cursor: not-allowed;
    pointer-events: none;
}

.tipo9-pagination__status {
    min-width: 105px;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 767px) {
    .tipo9-chart table.dataTable {
        font-size: 11px;
    }

    .tipo9-pagination {
        justify-content: center;
    }
}