/* 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;
}

/* Center header title styling */
.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-app-title {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-900);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    color: #1e88e5; /* Primary color */
}

@media (max-width: 991px) {
    /* Hide center title on small screens to prevent overlap with hamburger and right actions */
    .header-center {
        display: none;
    }
}

