table {
	font-size: 14px;
}

.table-bordered > :not(caption) > * {
	border-width: 1px 0;
	border-color: #dbdbdb;
}

/* ==========================================================================
   Z-INDEX SCALE SYSTEM
   Defines a consistent z-index hierarchy to prevent stacking conflicts.
   ========================================================================== */
:root {
	--z-dropdown: 1000;
	--z-sticky: 1020;
	--z-fixed: 1030;
	--z-modal-backdrop: 1040;
	--z-modal: 1050;
	--z-popover: 1060;
	--z-tooltip: 1070;
	--z-loading: 1045; /* Between backdrop and modal */
}

/* DataTables processing/loading overlay fix */
.dataTables_processing,
div.dataTables_wrapper div.dataTables_processing {
	z-index: var(--z-loading) !important;
}

/* Select2 dropdown fix */
.select2-container--open .select2-dropdown {
	z-index: var(--z-modal) !important;
}

/* SweetAlert2 fix */
.swal2-container {
	z-index: calc(var(--z-modal) + 10) !important;
}