
	.custom-sidebar {
		background: linear-gradient(180deg, #111827 0%, #1f2937 50%, #0f172a 100%) !important;
		border-right: 1px solid rgba(255, 255, 255, 0.08);
	}

	.custom-brand {
		height: 62px;
		display: flex;
		align-items: center;
		background: rgba(255, 255, 255, 0.04);
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.custom-brand .brand-image {
		max-height: 38px;
		opacity: 1 !important;
		filter: drop-shadow(0 4px 8px rgba(0,0,0,.25));
	}

	.custom-brand .brand-text {
		font-size: 18px;
		font-weight: 600 !important;
		letter-spacing: 0.5px;
		color: #f9fafb;
	}

	.custom-user-panel {
		margin-left: 10px;
		margin-right: 10px;
		padding: 12px 10px;
		border-radius: 14px;
		background: rgba(255, 255, 255, 0.06);
		border: 1px solid rgba(255, 255, 255, 0.08);
	}

	.custom-user-panel img {
		width: 42px;
		height: 42px;
		object-fit: cover;
		border: 2px solid rgba(255, 255, 255, 0.25);
	}

	.user-name {
		color: #f3f4f6 !important;
		font-size: 14px;
		font-weight: 600;
	}

	.user-level {
		margin-top: 5px;
		font-size: 11px;
		padding: 5px 8px;
		border-radius: 20px;
		background: linear-gradient(135deg, #22c55e, #16a34a) !important;
	}

	.custom-menu .nav-link {
		margin: 4px 10px;
		border-radius: 12px;
		color: #d1d5db;
		transition: all 0.2s ease-in-out;
	}

	.custom-menu .nav-link:hover {
		background: rgba(255, 255, 255, 0.10);
		color: #ffffff;
		transform: translateX(3px);
	}

	.custom-menu .nav-link.active {
		background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
		color: #ffffff !important;
		box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
	}

	.custom-menu .nav-icon {
		font-size: 15px;
		margin-right: 8px;
	}


	.noc-login-page {
		min-height: 100vh;
		background:
			radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), transparent 35%),
			radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.28), transparent 35%),
			linear-gradient(135deg, #020617 0%, #0f172a 45%, #111827 100%);
		overflow: hidden;
		position: relative;
	}

	.noc-login-page::before {
		content: "";
		position: absolute;
		inset: 0;
		background-image:
			linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
			linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
		background-size: 42px 42px;
		mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent);
		pointer-events: none;
	}

	.login-wrapper {
		width: 100%;
		min-height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 20px;
		position: relative;
		z-index: 2;
	}

	.noc-login-box {
		width: 410px;
		max-width: 100%;
	}

	.noc-login-card {
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 22px;
		background: rgba(15, 23, 42, 0.82);
		backdrop-filter: blur(18px);
		box-shadow:
			0 24px 80px rgba(0, 0, 0, 0.45),
			inset 0 1px 0 rgba(255, 255, 255, 0.08);
		overflow: hidden;
	}

	.noc-login-body {
		background: transparent;
		padding: 34px 32px 28px;
		color: #e5e7eb;
	}

	.noc-logo-area {
		text-align: center;
		margin-bottom: 28px;
	}

	.noc-logo {
		width: 120px;
		height: auto;
		margin-bottom: 16px;
		filter: drop-shadow(0 12px 25px rgba(59, 130, 246, 0.35));
	}

	.noc-title {
		margin: 0;
		font-size: 27px;
		font-weight: 700;
		color: #ffffff;
		letter-spacing: 0.4px;
	}

	.noc-subtitle {
		margin-top: 6px;
		margin-bottom: 0;
		font-size: 13px;
		color: #93c5fd;
		letter-spacing: 1px;
		text-transform: uppercase;
	}

	.noc-input-group {
		border-radius: 14px;
		overflow: hidden;
		box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
	}

	.noc-input {
		height: 48px;
		border: 1px solid rgba(148, 163, 184, 0.25);
		border-right: none;
		background: rgba(15, 23, 42, 0.92);
		color: #ffffff;
		font-size: 14px;
		padding-left: 16px;
	}

	.noc-input::placeholder {
		color: #94a3b8;
	}

	.noc-input:focus {
		background: rgba(15, 23, 42, 0.98);
		color: #ffffff;
		border-color: #3b82f6;
		box-shadow: none;
	}

	.noc-input-icon {
		width: 48px;
		border: 1px solid rgba(148, 163, 184, 0.25);
		border-left: none;
		background: rgba(30, 41, 59, 0.95);
		color: #60a5fa;
		display: flex;
		justify-content: center;
	}

	.noc-login-btn {
		height: 48px;
		margin-top: 6px;
		border: none;
		border-radius: 14px;
		background: linear-gradient(135deg, #2563eb, #0ea5e9);
		color: #ffffff;
		font-weight: 700;
		letter-spacing: 0.3px;
		box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
		transition: all 0.25s ease;
	}

	.noc-login-btn:hover {
		color: #ffffff;
		transform: translateY(-2px);
		box-shadow: 0 18px 38px rgba(14, 165, 233, 0.45);
		background: linear-gradient(135deg, #1d4ed8, #0284c7);
	}

	.noc-footer {
		margin-top: 24px;
		padding-top: 18px;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		text-align: center;
		font-size: 12px;
		color: #94a3b8;
	}

	.status-dot {
		width: 8px;
		height: 8px;
		display: inline-block;
		border-radius: 50%;
		background: #22c55e;
		margin-right: 6px;
		box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
	}

	@media (max-width: 576px) {
		.noc-login-body {
			padding: 28px 22px 24px;
		}

		.noc-title {
			font-size: 24px;
		}

		.noc-logo {
			width: 100px;
		}
	}


	.noc-navbar {
		min-height: 64px;
		background:
			linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.94)),
			linear-gradient(90deg, #0f172a, #1d4ed8);
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
		backdrop-filter: blur(14px);
	}

	.noc-menu-toggle {
		width: 42px;
		height: 42px;
		margin-left: 4px;
		border-radius: 12px;
		color: #ffffff !important;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(255, 255, 255, 0.08);
		border: 1px solid rgba(255, 255, 255, 0.12);
		transition: all 0.2s ease-in-out;
	}

	.noc-menu-toggle:hover {
		background: rgba(255, 255, 255, 0.16);
		color: #ffffff !important;
		transform: translateY(-1px);
	}

	.noc-menu-toggle i {
		font-size: 16px;
	}

	.noc-navbar-title {
		display: flex;
		flex-direction: column;
		line-height: 1.2;
		margin-left: 12px;
	}

	.noc-title-main {
		color: #ffffff;
		font-size: 16px;
		font-weight: 700;
		letter-spacing: 0.3px;
	}

	.noc-title-sub {
		color: #bfdbfe;
		font-size: 11px;
		text-transform: uppercase;
		letter-spacing: 1.2px;
		margin-top: 2px;
	}

	.noc-user-badge {
		display: flex;
		align-items: center;
		gap: 9px;
		padding: 9px 14px;
		margin-right: 8px;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.10);
		border: 1px solid rgba(255, 255, 255, 0.14);
		color: #ffffff;
		font-size: 14px;
		font-weight: 600;
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	}

	.noc-user-badge i {
		color: #93c5fd;
		font-size: 14px;
	}

	@media (max-width: 576px) {
		.noc-navbar {
			min-height: 58px;
		}

		.noc-menu-toggle {
			width: 38px;
			height: 38px;
		}

		.noc-user-badge {
			padding: 8px 11px;
			font-size: 13px;
			margin-right: 2px;
		}
	}


	.noc-profile-card {
		border: none;
		border-radius: 22px;
		background:
			linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.92)),
			linear-gradient(90deg, #0f172a, #1d4ed8);
		box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
		overflow: hidden;
		position: relative;
		color: #ffffff;
	}

	.noc-profile-card::before {
		content: "";
		position: absolute;
		top: -80px;
		right: -80px;
		width: 210px;
		height: 210px;
		border-radius: 50%;
		background: rgba(96, 165, 250, 0.18);
	}

	.noc-profile-card::after {
		content: "";
		position: absolute;
		bottom: -90px;
		left: -90px;
		width: 220px;
		height: 220px;
		border-radius: 50%;
		background: rgba(14, 165, 233, 0.14);
	}

	.noc-profile-card .card-body {
		position: relative;
		z-index: 2;
		padding: 26px;
	}

	.noc-profile-header {
		display: flex;
		align-items: center;
		gap: 16px;
		margin-bottom: 24px;
	}

	.noc-profile-icon {
		width: 58px;
		height: 58px;
		border-radius: 18px;
		background: rgba(255, 255, 255, 0.12);
		border: 1px solid rgba(255, 255, 255, 0.16);
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	}

	.noc-profile-icon i {
		font-size: 25px;
		color: #bfdbfe;
	}

	.noc-profile-title {
		margin: 0;
		font-size: 22px;
		font-weight: 700;
		letter-spacing: 0.3px;
	}

	.noc-profile-subtitle {
		margin: 5px 0 0;
		font-size: 13px;
		color: #bfdbfe;
	}

	.noc-profile-content {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}

	.noc-info-item {
		display: flex;
		align-items: flex-start;
		gap: 12px;
		padding: 18px;
		border-radius: 18px;
		background: rgba(255, 255, 255, 0.10);
		border: 1px solid rgba(255, 255, 255, 0.14);
		backdrop-filter: blur(12px);
		transition: all 0.25s ease;
	}

	.noc-info-item:hover {
		transform: translateY(-3px);
		background: rgba(255, 255, 255, 0.15);
		box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
	}

	.noc-info-icon {
		width: 40px;
		height: 40px;
		border-radius: 14px;
		background: rgba(255, 255, 255, 0.14);
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}

	.noc-info-icon i {
		color: #93c5fd;
		font-size: 16px;
	}

	.noc-info-text span {
		display: block;
		font-size: 12px;
		color: #bfdbfe;
		margin-bottom: 5px;
		text-transform: uppercase;
		letter-spacing: 0.8px;
	}

	.noc-info-text strong {
		display: block;
		font-size: 15px;
		font-weight: 700;
		color: #ffffff;
		line-height: 1.4;
	}

	@media (max-width: 992px) {
		.noc-profile-content {
			grid-template-columns: 1fr;
		}
	}

	@media (max-width: 576px) {
		.noc-profile-card .card-body {
			padding: 22px;
		}

		.noc-profile-header {
			align-items: flex-start;
		}

		.noc-profile-title {
			font-size: 20px;
		}
	}


	.noc-table-card {
		border: none;
		border-radius: 22px;
		background: #ffffff;
		box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
		overflow: hidden;
	}

	.noc-table-header {
		padding: 22px 24px;
		border-bottom: none;
		background:
			linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(30, 64, 175, 0.94)),
			linear-gradient(90deg, #0f172a, #1d4ed8);
		color: #ffffff;
		position: relative;
		overflow: hidden;
	}

	.noc-table-header::before {
		content: "";
		position: absolute;
		top: -70px;
		right: -70px;
		width: 180px;
		height: 180px;
		border-radius: 50%;
		background: rgba(96, 165, 250, 0.18);
	}

	.noc-table-title-wrap {
		position: relative;
		z-index: 2;
		display: flex;
		align-items: center;
		gap: 15px;
	}

	.noc-table-icon {
		width: 54px;
		height: 54px;
		border-radius: 17px;
		background: rgba(255, 255, 255, 0.12);
		border: 1px solid rgba(255, 255, 255, 0.16);
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	}

	.noc-table-icon i {
		font-size: 23px;
		color: #bfdbfe;
	}

	.noc-table-title {
		margin: 0;
		font-size: 21px;
		font-weight: 700;
		letter-spacing: 0.3px;
	}

	.noc-table-subtitle {
		margin: 5px 0 0;
		font-size: 13px;
		color: #bfdbfe;
	}

	.noc-table-body {
		padding: 22px;
		background: #f8fafc;
	}

	.noc-table-responsive {
	border-radius: 18px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	overflow-x: auto;
	overflow-y: hidden;
	width: 100%;
	-webkit-overflow-scrolling: touch;
}

	.noc-modern-table {
		margin-bottom: 0;
		background: #ffffff;
		color: #334155;
		font-size: 13px;
	}

	.noc-modern-table thead th {
		background: #f1f5f9;
		color: #0f172a;
		font-size: 12px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		border-bottom: 1px solid #e5e7eb !important;
		border-top: none;
		white-space: nowrap;
		padding: 14px 12px;
		vertical-align: middle;
	}

	.noc-modern-table tbody td {
		padding: 13px 12px;
		vertical-align: middle;
		border-color: #eef2f7;
		white-space: nowrap;
	}

	.noc-modern-table tbody tr {
		transition: all 0.18s ease;
	}

	.noc-modern-table tbody tr:hover {
		background: #eff6ff;
	}

	.noc-modern-table.table-bordered,
	.noc-modern-table.table-bordered td,
	.noc-modern-table.table-bordered th {
		border-color: #eef2f7;
	}

	.noc-modern-table.table-striped tbody tr:nth-of-type(odd) {
		background-color: #ffffff;
	}

	.noc-modern-table.table-striped tbody tr:nth-of-type(even) {
		background-color: #f8fafc;
	}

	/* DataTables Search, Show Entries, Pagination */
	.dataTables_wrapper .dataTables_length label,
	.dataTables_wrapper .dataTables_filter label,
	.dataTables_wrapper .dataTables_info {
		color: #475569;
		font-size: 13px;
		font-weight: 500;
	}

	.dataTables_wrapper .dataTables_length select,
	.dataTables_wrapper .dataTables_filter input {
		border-radius: 12px;
		border: 1px solid #cbd5e1;
		padding: 6px 10px;
		font-size: 13px;
		outline: none;
	}

	.dataTables_wrapper .dataTables_filter input:focus {
		border-color: #2563eb;
		box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
	}

	.page-item .page-link {
		border-radius: 10px;
		margin: 0 2px;
		color: #1d4ed8;
		border-color: #e5e7eb;
	}

	.page-item.active .page-link {
		background: linear-gradient(135deg, #2563eb, #1d4ed8);
		border-color: #2563eb;
		box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
	}

	@media (max-width: 768px) {
		.noc-table-header {
			padding: 20px;
		}

		.noc-table-body {
			padding: 16px;
		}

		.noc-table-title {
			font-size: 19px;
		}

		.noc-table-subtitle {
			font-size: 12px;
		}
	}
