/* Modal Backdrop Blur */
.modal-backdrop.show {
    opacity: 0.5;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Data Table Outlines */
.dataTables_wrapper {
    border: 1px solid var(--primary-200);
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.dataTables_wrapper table.dataTable thead th {
    background-color: var(--primary-100);
    color: var(--primary-800);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--primary-200);
}

table.dataTable tbody tr {
    background-color: #fff;
    transition: background-color 0.2s;
}

table.dataTable tbody tr:nth-of-type(odd) {
    background-color: var(--primary-50);
}

table.dataTable tbody tr:hover {
    background-color: var(--secondary-50) !important;
}
