/* VARIÁVEIS */
.boi-list-360-scope {
    /* design tokens scoped */

    --primary-color: #f3b416;
    --secondary-color: #2c3e50;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

/* PAGE CONTAINER */
.boi-list-360-scope .page-container {
    padding: 20px;
    max-width: 100%;
    width: 100%;
}

/* TABELA COM HEADER INTEGRADO */
.boi-list-360-scope .table-container-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

.boi-list-360-scope .table-container-card.table-leads-wrap {
    overflow-x: auto;
}

.boi-list-360-scope .table-360 {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.boi-list-360-scope .table-leads {
    min-width: 1180px;
}

.boi-list-360-scope .table-leads thead th:nth-child(11),
.boi-list-360-scope .table-leads tbody td:nth-child(11) {
    overflow: visible;
    white-space: nowrap;
}

.boi-list-360-scope .table-leads tbody td:nth-child(6),
.boi-list-360-scope .table-leads tbody td:nth-child(8) {
    max-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* LINHA DE FILTROS NO HEADER */
.boi-list-360-scope .table-360 thead tr.filter-header-row {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.boi-list-360-scope .table-360 thead tr.filter-header-row td {
    padding: 20px;
    padding-bottom: 18px;
}

.boi-list-360-scope .filter-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.boi-list-360-scope .filter-header-left {
    display: flex;
    gap: 15px;
    flex: 1;
    align-items: flex-end;
}

.boi-list-360-scope .filter-header-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 150px;
}

.boi-list-360-scope .filter-header-item label {
    color: white;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.boi-list-360-scope .filter-header-item label i {
    font-size: 12px;
}

.boi-list-360-scope .filter-header-input {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    background: white;
    transition: all 0.2s;
    font-family: 'Dosis', sans-serif;
}

.boi-list-360-scope .filter-header-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.boi-list-360-scope .filter-header-input::placeholder {
    color: #999;
    font-size: 12px;
}

.boi-list-360-scope .filter-header-right {
    display: flex;
    gap: 10px;
}

.boi-list-360-scope .btn-filter {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.boi-list-360-scope .btn-filter:hover {
    background: #d99d0c;
    transform: translateY(-1px);
}

.boi-list-360-scope .btn-clear {
    background: white;
    color: #2c3e50;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.boi-list-360-scope .btn-clear:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

/* HEADERS DAS COLUNAS */
.boi-list-360-scope .table-360 thead tr.table-header-row {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-bottom: 2px solid rgba(0,0,0,.12);
}

.boi-list-360-scope .table-360 thead tr.table-header-row th {
    padding: 14px 12px;
    padding-top: 12px;
    font-weight: 600;
    font-size: 11px;
    color: white;
    text-align: left;
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.boi-list-360-scope .table-360 thead tr.table-header-row th.sortable {
    cursor: pointer;
    transition: background 0.2s;
}

.boi-list-360-scope .table-360 thead tr.table-header-row th.sortable:hover {
    background: rgba(255,255,255,0.1);
}

.boi-list-360-scope .table-360 thead tr.table-header-row th.sortable span {
    margin-right: 8px;
}

.boi-list-360-scope .table-360 thead tr.table-header-row th i {
    font-size: 11px;
    opacity: 0.7;
}

/* TBODY */
.boi-list-360-scope .table-360 tbody tr {
    border-bottom: 1px solid #ddd;
    transition: background 0.2s;
}

.boi-list-360-scope .table-360 tbody tr:nth-child(odd) {
    background-color: rgb(250, 250, 250);
}

.boi-list-360-scope .table-360 tbody tr:nth-child(even) {
    background-color: white;
}

.boi-list-360-scope .table-360 tbody tr:hover {
    background-color: rgb(245, 248, 250) !important;
}

.boi-list-360-scope .table-360 tbody td {
    padding: 12px;
    font-size: 13px;
    vertical-align: middle;
}

.boi-list-360-scope .table-360 tbody tr.row-highlight {
    background-color: #e8f5e9 !important;
}

.boi-list-360-scope .table-360 tbody td.text-center {
    text-align: center;
}

/* KPIs */
.boi-list-360-scope .kpis-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.boi-list-360-scope .kpi-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-left: 4px solid;
}

.boi-list-360-scope .kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.boi-list-360-scope .kpi-card.kpi-active {
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transform: scale(1.02);
}

.boi-list-360-scope .kpi-total { border-left-color: #6c757d; }
.boi-list-360-scope .kpi-pendente { border-left-color: #ffc107; }
.boi-list-360-scope .kpi-sincronizado { border-left-color: #17a2b8; }
.boi-list-360-scope .kpi-processado { border-left-color: #007bff; }
.boi-list-360-scope .kpi-criada { border-left-color: #28a745; }
.boi-list-360-scope .kpi-custo { border-left-color: var(--primary-color); }

.boi-list-360-scope .kpi-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.boi-list-360-scope .kpi-total .kpi-icon { background: #f8f9fa; color: #6c757d; }
.boi-list-360-scope .kpi-pendente .kpi-icon { background: #fff3cd; color: #856404; }
.boi-list-360-scope .kpi-sincronizado .kpi-icon { background: #d1ecf1; color: #0c5460; }
.boi-list-360-scope .kpi-processado .kpi-icon { background: #cce5ff; color: #004085; }
.boi-list-360-scope .kpi-criada .kpi-icon { background: #d4edda; color: #155724; }
.boi-list-360-scope .kpi-custo .kpi-icon { background: #fff4e6; color: var(--primary-color); }

.boi-list-360-scope .kpi-content {
    flex: 1;
}

.boi-list-360-scope .kpi-label {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.boi-list-360-scope .kpi-value {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

/* SYNC BANNER */
.boi-list-360-scope .sync-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 24px;
    margin: 0 0 20px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.boi-list-360-scope .sync-banner i {
    font-size: 20px;
}

/* BADGES */
.boi-list-360-scope .badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.boi-list-360-scope .badge-success {
    background: var(--success-color);
    color: #fff;
}

.boi-list-360-scope .badge-danger {
    background: var(--danger-color);
    color: #fff;
}

.boi-list-360-scope .badge-secondary {
    background: #6c757d;
    color: #fff;
}

.boi-list-360-scope .badge-info {
    background: var(--info-color);
    color: #fff;
}

.boi-list-360-scope .badge-warning {
    background: var(--warning-color);
    color: #333;
}

/* BOTÕES */
.boi-list-360-scope .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.boi-list-360-scope .btn-primary {
    background: var(--primary-color);
    color: white;
}

.boi-list-360-scope .btn-primary:hover {
    background: #d99d0c;
    transform: translateY(-1px);
}

.boi-list-360-scope .btn-secondary {
    background: #6c757d;
    color: white;
}

.boi-list-360-scope .btn-secondary:hover {
    background: #5a6268;
}

.boi-list-360-scope .btn-icon {
    padding: 6px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0 2px;
    color: white;
}

.boi-list-360-scope .btn-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.boi-list-360-scope .btn-icon.btn-info {
    background: var(--info-color);
}

.boi-list-360-scope .btn-icon.btn-primary {
    background: var(--primary-color);
}

.boi-list-360-scope .btn-icon.btn-success {
    background: var(--success-color);
}

.boi-list-360-scope .btn-icon.btn-warning {
    background: var(--warning-color, #f0ad4e);
}

.boi-list-360-scope .btn-icon.btn-danger {
    background: var(--danger-color);
}

.boi-list-360-scope .btn-icon-xs {
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    font-size: 11px;
    white-space: nowrap;
}

.boi-list-360-scope .btn-icon-xs:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.boi-list-360-scope .btn-icon-xs.btn-danger {
    background: var(--danger-color);
}

.boi-list-360-scope .btn-icon-xs.btn-success {
    background: var(--success-color);
}

.boi-list-360-scope .btn-icon-xs.btn-primary {
    background: var(--primary-color);
}

.boi-list-360-scope .btn-icon-xs.btn-warning {
    background: #ffc107;
}

.boi-list-360-scope .modal-md {
    width: 600px;
    max-width: 90vw;
}

.boi-list-360-scope .info-section-modal {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.boi-list-360-scope .info-section-modal:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.boi-list-360-scope .info-section-modal h4 {
    margin: 0 0 15px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.boi-list-360-scope .form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.2s;
}

.boi-list-360-scope .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(243, 180, 22, 0.1);
}

.boi-list-360-scope .form-control-lg {
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 500;
}

/* Modal Editar Tarifa - Compacto */
.boi-list-360-scope .badge-lg {
    padding: 6px 12px;
    font-size: 13px;
}

.boi-list-360-scope .text-success {
    color: var(--success-color);
}

.boi-list-360-scope .text-danger {
    color: var(--danger-color);
}

.boi-list-360-scope .action-buttons {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

/* LOADING */
.boi-list-360-scope .loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boi-list-360-scope .loading-spinner {
    text-align: center;
    color: var(--primary-color);
}

.boi-list-360-scope .loading-spinner p {
    margin-top: 15px;
    font-size: 16px;
    color: #999;
}

/* LOGS */
.boi-list-360-scope .logs-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
    margin: 0 0 20px 0;
}

.boi-list-360-scope .logs-title {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.boi-list-360-scope .logs-title i {
    color: var(--primary-color);
}

.boi-list-360-scope .logs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.boi-list-360-scope .log-item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px;
    transition: all 0.2s;
}

.boi-list-360-scope .log-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.boi-list-360-scope .log-item.log-success {
    border-left: 4px solid var(--success-color);
}

.boi-list-360-scope .log-item.log-error {
    border-left: 4px solid var(--danger-color);
}

.boi-list-360-scope .log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.boi-list-360-scope .log-date {
    font-size: 13px;
    font-weight: 500;
    color: #666;
}

.boi-list-360-scope .log-message {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #333;
}

.boi-list-360-scope .log-stats {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #666;
}

.boi-list-360-scope .log-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.boi-list-360-scope .log-stats i {
    color: var(--primary-color);
}

/* MODAL */
.boi-list-360-scope .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.boi-list-360-scope .modal-dialog {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1000px;
}

.boi-list-360-scope .modal-xl {
    max-width: 1200px;
}

.boi-list-360-scope .modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d99d0c 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* TABS */
.boi-list-360-scope .tabs-container {
    background: white;
    border-bottom: 2px solid #e0e0e0;
}

.boi-list-360-scope .tabs-header {
    display: flex;
    padding: 0 20px;
    gap: 5px;
}

.boi-list-360-scope .tab-button {
    background: transparent;
    border: none;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.boi-list-360-scope .tab-button i {
    font-size: 14px;
}

.boi-list-360-scope .tab-button:hover {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.02);
}

.boi-list-360-scope .tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(var(--primary-color-rgb, 241, 156, 12), 0.05);
}

.boi-list-360-scope .modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.boi-list-360-scope .btn-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.boi-list-360-scope .btn-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.boi-list-360-scope .modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(90vh - 150px);
}

.boi-list-360-scope .modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.boi-list-360-scope .modal-orcamento-intro {
    margin: 0 0 16px;
    padding: 12px 14px;
    background: #fff8e6;
    border: 1px solid #ffe082;
    border-radius: 6px;
    color: #5d4037;
    font-size: 13px;
}

.boi-list-360-scope .modal-orcamento-mensagem {
    margin: 0;
    white-space: pre-wrap;
    font-family: 'Dosis', sans-serif;
    font-size: 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 12px;
    max-height: 200px;
    overflow: auto;
}

.boi-list-360-scope .modal-orcamento-preview {
    margin-top: 16px;
    text-align: center;
}

.boi-list-360-scope .modal-orcamento-preview img {
    max-width: 280px;
    max-height: 200px;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

/* INFO SECTIONS */
.boi-list-360-scope .info-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.boi-list-360-scope .info-section:last-child {
    border-bottom: none;
}

.boi-list-360-scope .info-section h4 {
    margin: 0 0 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.boi-list-360-scope .info-section h4 i {
    color: var(--primary-color);
}

.boi-list-360-scope .info-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.boi-list-360-scope .info-field {
    display: flex;
    flex-direction: column;
}

.boi-list-360-scope .info-field label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.boi-list-360-scope .info-field span {
    font-size: 14px;
    color: #333;
}

.boi-list-360-scope .descricao-text {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin: 0;
    line-height: 1.6;
    color: #333;
}

/* FICHEIROS NO MODAL */
.boi-list-360-scope .ficheiros-grid-modal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.boi-list-360-scope .ficheiro-card-modal {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
}

.boi-list-360-scope .ficheiro-card-modal:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.boi-list-360-scope .ficheiro-icon-modal {
    flex-shrink: 0;
    color: #666;
}

.boi-list-360-scope .ficheiro-info-modal {
    flex: 1;
    min-width: 0;
}

.boi-list-360-scope .ficheiro-nome-modal {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.boi-list-360-scope .ficheiro-meta-modal {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.boi-list-360-scope .ficheiro-actions-modal {
    display: flex;
    gap: 5px;
}

.boi-list-360-scope .btn-icon-sm {
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    font-size: 12px;
}

.boi-list-360-scope .btn-icon-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.boi-list-360-scope .btn-icon-sm.btn-info {
    background: var(--info-color);
}

.boi-list-360-scope .btn-icon-sm.btn-primary {
    background: var(--primary-color);
}

.boi-list-360-scope .btn-icon-sm.btn-success {
    background: var(--success-color);
}

.boi-list-360-scope .badge-sm {
    padding: 3px 8px;
    font-size: 10px;
}

.boi-list-360-scope .btn-success {
    background: var(--success-color);
    color: white;
}

.boi-list-360-scope .btn-success:hover {
    background: #218838;
    transform: translateY(-1px);
}

/* MODAL DE PDFs */
.boi-list-360-scope .pdfs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.boi-list-360-scope .pdf-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
}

.boi-list-360-scope .pdf-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.boi-list-360-scope .pdf-icon {
    flex-shrink: 0;
    color: #dc3545;
}

.boi-list-360-scope .pdf-info {
    flex: 1;
    min-width: 0;
}

.boi-list-360-scope .pdf-nome {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.boi-list-360-scope .pdf-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 12px;
}

.boi-list-360-scope .pdf-actions {
    display: flex;
    gap: 10px;
}

.boi-list-360-scope .btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.boi-list-360-scope .modal-lg {
    width: 900px;
    max-width: 95vw;
}

/* PAGINAÇÃO */
.boi-list-360-scope .pagination-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}

.boi-list-360-scope .pagination-info {
    font-size: 14px;
    color: #666;
}

.boi-list-360-scope .pagination-controls {
    display: flex;
    gap: 5px;
    align-items: center;
}

.boi-list-360-scope .pagination-numbers {
    display: flex;
    gap: 3px;
}

.boi-list-360-scope .btn-pagination {
    min-width: 36px;
    height: 36px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 14px;
}

.boi-list-360-scope .btn-pagination:hover:not(:disabled):not(.active) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.boi-list-360-scope .btn-pagination:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.boi-list-360-scope .btn-pagination.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    font-weight: 600;
}

/* SORTABLE */
.boi-list-360-scope .modern-table thead th.sortable {
    cursor: pointer;
    user-select: none;
}

.boi-list-360-scope .modern-table thead th.sortable:hover {
    background: rgba(255,255,255,0.1);
}

.boi-list-360-scope .modern-table thead th.sortable i {
    margin-left: 5px;
    font-size: 11px;
}