/* CUSTOM SCROLLBAR */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-gutter: stable;
}

/* GLOBAL DARK THEME OVERRIDES */
.card,
.panel,
.list-group-item {
	background-color: var(--ui-surface) !important;
	color: var(--ui-text) !important;
	border-color: var(--ui-border) !important;
}

.card {
	background: linear-gradient(180deg, var(--ui-surface) 0%, #13192b 100%) !important;
	border: 1px solid var(--ui-border) !important;
	border-radius: 14px !important;
	box-shadow: var(--ui-shadow);
	overflow: hidden;
}

.card-body {
	background: transparent !important;
	color: inherit !important;
}

.table {
	--bs-table-bg: var(--ui-surface) !important;
	--bs-table-color: var(--ui-text) !important;
	--bs-table-border-color: var(--ui-border) !important;
	--bs-table-hover-bg: #1e2135 !important;
	--bs-table-striped-bg: #1a1d30 !important;
	--bs-table-accent-bg: #1a1d30 !important;
	background-color: var(--ui-surface) !important;
	color: var(--ui-text) !important;
	border-color: var(--ui-border) !important;
}

.table tbody tr {
	background-color: var(--ui-surface) !important;
	color: var(--ui-text) !important;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
	--bs-table-accent-bg: #1a1d30 !important;
	background-color: #1a1d30 !important;
	color: #e0e0e0 !important;
}

.table-hover > tbody > tr:hover > * {
	--bs-table-hover-bg: #1e2135 !important;
	background-color: #1e2135 !important;
}

.table-light {
	--bs-table-bg: #1e2135 !important;
	--bs-table-color: var(--ui-text) !important;
	--bs-table-border-color: var(--ui-border) !important;
}

.table thead th {
	background-color: #1e2135 !important;
	color: #b0b0b0 !important;
	border-bottom-color: var(--ui-border) !important;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 0.03em;
}

.table tbody td {
	border-color: var(--ui-border) !important;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
	--bs-table-accent-bg: #1a1d30;
	color: #e0e0e0;
}

.form-control,
.form-select {
	background-color: #1e2135 !important;
	border-color: var(--ui-border) !important;
	color: var(--ui-text) !important;
}

.form-control:focus,
.form-select:focus {
	background-color: #23263a !important;
	border-color: #4b6bc5 !important;
	color: #fff !important;
	box-shadow: 0 0 0 .2rem rgba(75, 107, 197,.25) !important;
}

.btn:focus,
.btn:active,
.btn:focus-visible {
	border-color: #4b6bc5 !important;
	box-shadow: 0 0 0 .2rem rgba(75, 107, 197,.25) !important;
	outline: none !important;
}

a:focus,
a:focus-visible {
	outline: 2px solid #4b6bc5 !important;
	outline-offset: 2px;
	border-radius: 4px;
}

.footer a:focus,
.footer a:focus-visible,
.nav.flex-column .nav-link:focus,
.nav.flex-column .nav-link:focus-visible {
	outline: 2px solid #4b6bc5 !important;
	outline-offset: 2px;
	border-radius: 4px;
	display: inline-block;
}

.navbar-brand:focus,
.navbar-brand:focus-visible,
.navbar .nav-link:focus,
.navbar .nav-link:focus-visible,
.navbar .dropdown-toggle:focus,
.navbar .dropdown-toggle:focus-visible,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:focus-visible,
.tile-link:focus,
.tile-link:focus-visible {
	outline: none !important;
}

.tile-link:focus,
.tile-link:focus-visible {
	outline: none !important;
}

footer .nav-link {
	display: inline-block;
	width: auto;
}

.card:focus,
.card:focus-within,
.info-card:hover,
.category-card:hover,
.pricing-card:hover,
.product-card:hover,
.review-card:hover {
	border-color: #4b6bc5 !important;
}

input:focus,
select:focus,
textarea:focus {
	border-color: #4b6bc5 !important;
	box-shadow: 0 0 0 .2rem rgba(75, 107, 197,.25) !important;
	outline: none !important;
}

.btn-outline-secondary:focus,
.btn-outline-primary:focus,
.btn-outline-secondary:hover,
.btn-outline-primary:hover,
.btn-check:focus + .btn,
.btn-check:checked + .btn:focus {
	border-color: #4b6bc5 !important;
	box-shadow: 0 0 0 .2rem rgba(75, 107, 197,.25) !important;
}

.btn-outline-secondary,
.btn-outline-primary,
.btn-outline {
	border-color: rgba(75, 107, 197,.4) !important;
	color: #e0e0e0 !important;
}

.btn-outline-secondary:hover,
.btn-outline-primary:hover,
.btn-outline:hover {
	background: rgba(75, 107, 197,.1) !important;
	border-color: #4b6bc5 !important;
	color: #fff !important;
}

.list-group-item.active {
	background-color: #1e3a5f !important;
	border-color: #4b6bc5 !important;
	color: #fff !important;
}

.list-group-item:focus,
.list-group-item:focus-visible {
	border-color: #4b6bc5 !important;
	outline: none !important;
	box-shadow: 0 0 0 .2rem rgba(75, 107, 197,.15) !important;
}

.form-control::placeholder {
	color: #6b7280 !important;
}

.alert {
	border: none;
}

.badge.bg-success {
	background-color: #065f46 !important;
}

.badge.bg-info {
	background-color: #1e3a5f !important;
}

.bg-light {
	background-color: #1e2135 !important;
	color: #e0e0e0 !important;
}

.text-dark {
	color: #e0e0e0 !important;
}

hr {
	border-color: var(--ui-border) !important;
	opacity: 0.5;
}

.list-group-item.active {
	background-color: #1e3a5f !important;
	border-color: #4b6bc5 !important;
	color: #fff !important;
}

.list-group-item:hover {
	background-color: #1e2135 !important;
}

.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
	background-color: #1e2135 !important;
	border-color: var(--ui-border) !important;
	color: var(--ui-text) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	color: var(--ui-text) !important;
	background: #1e2135 !important;
	border-color: var(--ui-border) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
	background: #4b6bc5 !important;
	border-color: #4b6bc5 !important;
	color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	background: #23263a !important;
	color: #fff !important;
}

.page-link {
	background-color: #1e2135 !important;
	border-color: var(--ui-border) !important;
	color: var(--ui-text) !important;
}

.page-link:hover {
	background-color: #23263a !important;
	color: #fff !important;
}

.page-item.active .page-link {
	background-color: #4b6bc5 !important;
	border-color: #4b6bc5 !important;
}

.table-group-divider {
	border-top-color: var(--ui-border) !important;
}

.border-top { border-top-color: var(--ui-border) !important; }
.border-bottom { border-bottom-color: var(--ui-border) !important; }
.border-start { border-left-color: var(--ui-border) !important; }
.border-end { border-right-color: var(--ui-border) !important; }
.border { border-color: var(--ui-border) !important; }

::-webkit-scrollbar {
	width: 7px;
	height: 0;
}

::-webkit-scrollbar-track {
	background: #0f111a;
}

::-webkit-scrollbar-thumb {
	background: #3a3e63;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #4b6bc5;
}

* {
	scrollbar-width: thin;
	scrollbar-color: #3a3e63 #0f111a;
}

/* AT-RULES */
@media (max-width: 767px) {
	.tiles .block {
		padding: 15px;
	}
	.tiles .icon {
		font-size: 2rem;
		margin-right: 15px;
	}
	.tiles .stat {
		font-size: 1.2rem;
	}
	.tiles .title {
		font-size: 0.9rem;
	}
}
@media screen and (max-width: 768px) {
	.sidebar .panel-heading {
		border-bottom: none;
	}
}

/* ELEMENTS */
section#main-body {
	flex: 1;
}
h1 {
	color: #fff;
	font-size: 2em;
}
h3 i {
	color: #4b6bc5 !important;
	font-size: 1.5rem !important;
}

/* CLASSES */
.status-circle {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--ui-green);
	box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.13), 0 0 16px rgba(16, 185, 129, 0.36);
	margin-right: 3px;
}
.custom-navbar .nav-link {
	font-size: 14px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.custom-navbar .second-layer .nav-link {
	font-size: 18px;
	font-weight: 500;
}
.custom-navbar .first-layer .nav-link {
	color: var(--primary-link-color);
	padding-left: 10px;
	padding-right: 10px;
}
.custom-navbar .second-layer .nav-link {
	color: var(--secondary-link-color);
}
.custom-navbar .nav-link:hover {
	color: #4b6bc5;
}
.custom-navbar .second-layer {
	padding-top: 10px;
	padding-bottom: 10px;
}
.custom-navbar .second-layer .navbar-nav .nav-link {
	padding-left: 20px;
	padding-right: 20px;
}
.custom-navbar .second-layer .navbar-nav .dropdown-menu {
	background-color: #0d0e18;
}
.custom-navbar .second-layer .navbar-nav .dropdown-item {
	color: var(--secondary-link-color);
}
.custom-navbar .second-layer .navbar-nav .dropdown-item:hover {
	color: #ffffff;
	background-color: transparent;
}
.dropdown-menu {
	z-index: 1020;
	border: none;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.dropdown-menu-end {
	right: 0;
	left: auto;
}

.dropdown.show > .dropdown-menu,
.dropdown-menu.show {
	display: block;
}

.dropdown-menu[data-bs-popper] {
	top: 100%;
	left: 0;
	margin-top: 0.125rem;
}

.dropdown-menu-end[data-bs-popper] {
	right: 0;
	left: auto;
}

.dropdown-item {
	padding: 0.5rem 1rem;
	transition: background-color 0.2s ease-in-out;
}
.dropdown-item:hover {
	background-color: var(--ui-surface-soft);
	color: var(--ui-heading);
}
.dropdown-item i {
	margin-right: 0.5rem;
	color: var(--ui-primary);
}
.navDropdown:hover {
	background-color: var(--ui-surface-soft);
	border-radius: 5px;
}
.navDropdown {
	padding: 10px;
}
.navbar-nav i {
	font-size: 18px;
}
.account-dropdown {
	position: relative;
}
.account-dropdown .dropdown-menu {
	position: absolute;
	z-index: 1050;
	right: 0;
	left: auto;
	top: 100%;
	margin-top: 0.5rem;
	background-color: #0d0e18;
	border: 1px solid #3a3e63;
	border-radius: 8px;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	padding: 0.5rem 0;
}
.account-dropdown .dropdown-item {
	color: rgba(255, 255, 255, 0.9);
	padding: 0.5rem 1rem;
	font-size: 14px;
}
.account-dropdown .dropdown-item:hover {
	background-color: var(--ui-surface-soft);
	color: var(--ui-heading);
}
.account-dropdown .nav-link {
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	padding: 0.5rem 1rem;
	border-radius: 0.25rem;
}
.account-dropdown .dropdown-toggle::after {
	vertical-align: middle;
	margin-left: 0.5em;
}
.account-dropdown .dropdown-item i {
	width: 1.5em;
	text-align: center;
	margin-right: 0.5em;
	color: #4b6bc5;
}
.fs-1 {
	font-size: 2.5rem !important;
}
.card-text {
	font-size: 1.15rem;
	font-weight: 500;
	color: var(--ui-text-soft);
}
.welcome-header,
.block-header {
    background: linear-gradient(135deg, var(--ui-surface) 0%, var(--ui-surface-soft) 100%);
    border: 1px solid var(--ui-border);
    border-left: 4px solid var(--ui-primary);
    border-radius: 14px;
    box-shadow: var(--ui-shadow);
    padding: 22px 24px;
    margin-bottom: 1.25rem;
}
.welcome-header h3,
.block-header h3 {
    color: var(--ui-heading);
    margin: 0;
    font-weight: 700;
    font-size: 1.35rem;
}
.welcome-header p,
.block-header p {
    color: var(--ui-text-soft);
}
.sidebar .panel,
.panel {
    background: linear-gradient(180deg, var(--ui-surface) 0%, #13192b 100%);
    border: 1px solid var(--ui-border);
    border-radius: 14px;
    box-shadow: var(--ui-shadow);
    margin-bottom: 20px;
    overflow: hidden;
}
.panel-heading,
.sidebar .panel-heading,
.panel .xn-panel-title {
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid var(--ui-border-soft);
    padding: 16px 20px;
    color: var(--ui-heading);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}
.panel-title,
.sidebar .panel-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ui-heading);
    margin: 0;
}
.panel-body {
    padding: 18px 20px;
}
.panel-footer {
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--ui-border-soft);
    padding: 14px 20px;
}
.list-group-item {
    background: transparent;
    border: 0;
    border-top: 1px solid var(--ui-border-soft);
    color: var(--ui-text);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.list-group-item:first-child {
    border-top: 0;
}
.list-group-item:hover {
    background: rgba(75, 107, 197, 0.12);
    color: var(--ui-heading);
    text-decoration: none;
}
.list-group-item.active {
    background: rgba(75, 107, 197, 0.2);
    color: var(--ui-heading);
    font-weight: 600;
}
.list-group-item .sidebar-menu-item-icon {
    color: var(--ui-primary);
    margin-right: 10px;
}
.list-group-item .badge {
    margin-left: auto;
    background: rgba(75, 107, 197, 0.22);
    border: 1px solid rgba(96, 165, 250, 0.35);
    color: #bfdbfe;
}
.tiles {
}
.tiles i {
	font-size: 2.5rem;
	color: var(--ui-primary);
}
.tiles .block {
	background: linear-gradient(180deg, var(--ui-surface) 0%, #13192b 100%);
	border: 1px solid var(--ui-border);
	border-radius: 14px;
	padding: 20px;
	height: 100%;
	color: var(--ui-text);
	transition: all 0.3s ease;
	box-shadow: var(--ui-shadow);
	display: flex;
	align-items: center;
}
.tiles .tile-link {
	display: block;
	text-decoration: none;
	margin-bottom: 20px;
}
.tiles .tile-link:hover .block {
	background: linear-gradient(180deg, var(--ui-surface-soft) 0%, #1a2340 100%);
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.tile-link i {
	font-size: 2.5rem;
	color: var(--ui-primary);
	margin-right: 20px;
	flex-shrink: 0;
}
.tiles .content {
	flex-grow: 1;
}
.tiles .stat {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 5px;
}
.tiles .title {
	font-size: 1rem;
}
.client-home-panels .panel {
	background: linear-gradient(180deg, var(--ui-surface) 0%, #13192b 100%);
	border: 1px solid var(--ui-border);
	border-radius: 14px;
	margin-bottom: 20px;
	box-shadow: var(--ui-shadow);
	overflow: hidden;
}
.client-home-panels .panel .xn-panel-title {
	background: rgba(255, 255, 255, 0.01);
	border-bottom: 1px solid var(--ui-border-soft);
	padding: 16px 20px;
	font-size: 1rem;
	font-weight: 600;
}
.btn-view-more {
	color: var(--ui-primary);
	text-decoration: none;
	transition: color 0.3s ease;
}
.btn-view-more:hover {
	color: #7b9de0;
	text-decoration: underline;
}
.container {
	margin-top: 10px;
}
.table {
	background: var(--ui-surface);
	color: var(--ui-text);
	margin-bottom: 20px;
	border-radius: 8px;
	overflow: hidden;
}
.table thead th {
	border-bottom: 2px solid var(--ui-border);
	padding: 15px;
	font-weight: bold;
	color: var(--ui-primary);
}
.table tbody td {
	border-top: 1px solid var(--ui-border-soft);
	padding: 15px;
	background: transparent;
	color: var(--ui-text);
}
.table tbody tr:hover {
	background-color: rgba(75, 107, 197, 0.08);
}
.table tbody td a {
	color: var(--ui-primary);
	text-decoration: none;
}
.table tbody td a:hover {
	text-decoration: underline;
}
.main-content .table-container {
	background: linear-gradient(180deg, var(--ui-surface) 0%, #13192b 100%);
	border-radius: 14px;
	padding: 20px;
	box-shadow: var(--ui-shadow);
	margin-bottom: 24px;
}
.main-content .table-container .table {
	background: transparent;
	margin-bottom: 0;
	border-radius: 0;
}
.main-content .table thead th {
	background: rgba(31, 40, 66, 0.95);
	border: none;
	border-bottom: 1px solid var(--ui-border);
	padding: 14px 20px;
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--ui-heading);
}
.main-content .table tbody td {
	border: none;
	border-bottom: 1px solid var(--ui-border-soft);
	padding: 14px 20px;
	vertical-align: middle;
}
.main-content .table tbody td:first-child,
.main-content .table thead th:first-child {
	padding-left: 24px;
}
.main-content .table tbody td:last-child,
.main-content .table thead th:last-child {
	padding-right: 24px;
	text-align: center;
	width: 1%;
	white-space: nowrap;
}
.main-content .table tbody tr:last-child td {
	border-bottom: none;
}
.main-content .table tbody tr {
	transition: background-color 0.3s ease;
}
.main-content .table tbody td a {
	font-weight: 500;
}
.dataTables_wrapper {
	background: linear-gradient(180deg, var(--ui-surface) 0%, #13192b 100%);
	padding: 20px;
	border-radius: 14px;
	border: 1px solid var(--ui-border);
}
.dataTables_wrapper .dataTables_length select {
	background: var(--ui-surface-soft);
	border: 1px solid var(--ui-border);
	color: var(--ui-text);
	border-radius: 8px;
	padding: 6px 28px 6px 12px;
	font-size: 0.875rem;
	cursor: pointer;
	appearance: auto;
}
.dataTables_wrapper .dataTables_length select:focus {
	border-color: var(--ui-primary);
	outline: none;
	box-shadow: 0 0 0 3px rgba(75, 107, 197, 0.15);
}
.dataTables_wrapper .dataTables_length select option {
	background: var(--ui-surface);
	color: var(--ui-text);
}
.dataTables_wrapper .dataTables_length {
	color: var(--ui-text-soft);
	margin-bottom: 12px;
}
.dataTables_wrapper .dataTables_filter input {
	background: var(--ui-surface-soft);
	border: 1px solid var(--ui-border);
	color: var(--ui-text);
	border-radius: 8px;
	padding: 6px 12px;
	font-size: 0.875rem;
}
.dataTables_wrapper .dataTables_filter input:focus {
	border-color: var(--ui-primary);
	outline: none;
	box-shadow: 0 0 0 3px rgba(75, 107, 197, 0.15);
}
.dataTables_wrapper .dataTables_filter {
	color: var(--ui-text-soft);
	margin-bottom: 12px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
	color: var(--ui-text) !important;
	background: var(--ui-surface-soft) !important;
	border: 1px solid var(--ui-border) !important;
	border-radius: 8px;
	margin: 0 2px;
	padding: 6px 12px;
	font-size: 0.875rem;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	color: var(--ui-heading) !important;
	background: rgba(75, 107, 197, 0.2) !important;
	border-color: var(--ui-primary) !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
	background: var(--ui-primary) !important;
	border-color: var(--ui-primary) !important;
	color: #ffffff !important;
}
.dataTables_wrapper .dataTables_info {
	color: var(--ui-text-soft);
	padding-top: 10px;
}
.dataTables_wrapper .dataTables_paginate {
	margin-top: 20px;
}
.dataTables_filter input {
	width: 100%;
	max-width: 200px;
	margin-left: 10px;
}
.dt-length {
	margin-bottom: 10px !important;
}
.view-cart-header {
	margin: 0;
	padding: 0.75rem 0.75rem;
	color: #fff;
}
.view-cart-items .item {
	margin: 0;
	padding: 10px;
	background-color: var(--ui-surface-soft);
	border-left: 0;
	border-right: 0;
	font-size: 0.8em;
	border-radius: 8px;
}
.view-cart-items .item:nth-child(even) {
	background-color: var(--ui-surface);
	margin-top: 10px;
}
.card-body h5 {
	color: var(--ui-heading);
}
.form-control,
.form-select {
	background: var(--ui-surface-soft);
	border: 1px solid var(--ui-border);
	color: var(--ui-text);
	border-radius: 10px;
	box-shadow: none;
}
.form-control:focus,
.form-select:focus {
	background: var(--ui-surface);
	color: var(--ui-heading);
	border-color: var(--ui-primary);
	box-shadow: 0 0 0 3px rgba(75, 107, 197, 0.15);
}
.form-control::placeholder,
.form-select::placeholder {
	color: var(--ui-text-soft);
}
.form-label {
	color: var(--ui-text);
	font-weight: 600;
}
.form-check-input {
	background-color: var(--ui-surface);
	border: 1px solid var(--ui-border);
	cursor: pointer;
	width: 1.15em;
	height: 1.15em;
	margin-top: 0.2em;
}
.form-check-input:checked {
	background-color: var(--ui-primary);
	border-color: var(--ui-primary);
}
.form-check-input:focus {
	border-color: var(--ui-primary);
	box-shadow: 0 0 0 3px rgba(75, 107, 197, 0.15);
}
.form-check-label {
	color: var(--ui-text);
}
.legal-notice {
	display: inline-block;
	margin-top: 1px;
	font-size: 0.82rem;
	color: var(--ui-text);
	line-height: 1.45;
}
.btn-primary {
	background: linear-gradient(135deg, var(--ui-primary), var(--ui-primary-strong));
	border-color: var(--ui-primary-strong);
	color: #fff;
}
.btn-primary:hover {
	background: linear-gradient(135deg, #384f99, #1d4ed8);
	border-color: #1d4ed8;
}
.btn-secondary {
	background: #344157;
	border-color: #3d4c66;
	color: #edf2ff;
}
.btn-secondary:hover {
	background: #3b4a64;
	border-color: #485974;
	color: #fff;
}
.btn-danger {
	background: rgba(239, 68, 68, 0.18);
	border: 1px solid rgba(239, 68, 68, 0.3);
	color: #fca5a5;
}
.btn-danger:hover {
	background: rgba(239, 68, 68, 0.28);
	border-color: rgba(239, 68, 68, 0.45);
	color: #fecaca;
}
.btn-sm {
	padding: 6px 14px;
	font-size: 0.8rem;
	border-radius: 6px;
}
.btn {
	transition: all 0.2s ease;
	border-radius: 8px;
}
.btn:hover {
	transform: translateY(-1px);
}
.alert {
	border-radius: 10px;
	margin-top: 20px;
}
.alert-danger {
	background: rgba(239, 68, 68, 0.16);
	border-color: rgba(239, 68, 68, 0.28);
	color: #fecaca;
}
.alert-success {
	background: rgba(16, 185, 129, 0.16);
	border-color: rgba(16, 185, 129, 0.3);
	color: #9ef1cf;
}
.alert-warning {
	background: rgba(245, 158, 11, 0.16);
	border-color: rgba(245, 158, 11, 0.3);
	color: #fde68a;
}
.alert-info {
	background: rgba(75, 107, 197, 0.16);
	border-color: rgba(75, 107, 197, 0.28);
	color: #bfdbfe;
}

/* IDS */
#tableQuotesList th {
	font-weight: 600;
}
#tablQuotesList_info {
	margin-top: 10px !important;
}

/* PSEUDO */
i.fab:hover {
	color: var(--ui-primary);
}

.verification-message {
	background: var(--ui-surface);
	padding: 30px;
	border-radius: 14px;
	margin-bottom: 20px;
	box-shadow: var(--ui-shadow);
}

.verification-message h3 {
	margin: 0 0 10px;
	font-weight: bold;
	font-size: 24px;
}

.btn-redirect {
	background-color: var(--ui-primary);
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	display: inline-block;
	margin-top: 20px;
	transition: background-color 0.3s ease;
}

.btn-redirect:hover {
	background-color: var(--ui-primary-strong);
}

.ticket-reply {
	background: rgba(25, 33, 55, 0.7);
	border: 1px solid var(--ui-border-soft);
	border-radius: 12px;
	padding: 14px;
	margin-bottom: 14px;
}

.ticket-reply .message {
	background: rgba(18, 24, 40, 0.9);
	border-radius: 10px;
	border: 1px solid var(--ui-border-soft);
}

label {
	margin-top: 10px;
	margin-bottom: 5px;
}

.form-group {
	margin-bottom: 15px;
}

.btn-add-more {
	margin-top: 10px;
}

.file-input {
	margin-bottom: 10px;
}

.btn-row {
	margin-top: 20px;
}

.input-group-text {
	display: flex;
	align-items: center;
	padding: 0.775rem 1rem;
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1.5;
	color: var(--bs-gray-700);
	text-align: center;
	white-space: nowrap;
	background-color: unset;
	border: none;
	border-radius: unset;
	height: 100%;
}

/* Homepage polish */
:root {
    --ui-bg: #0d0e18;
    --ui-surface: #151a2b;
    --ui-surface-soft: #1b2237;
    --ui-border: #2a3554;
    --ui-border-soft: #222c47;
    --ui-text: #e6ebfb;
    --ui-text-soft: #a7b3d7;
    --ui-heading: #f8faff;
    --ui-primary: #4b6bc5;
    --ui-primary-strong: #384f99;
    --ui-shadow: 0 8px 22px rgba(2, 6, 23, 0.35);
    --ui-cyan: #32d5c6;
    --ui-green: #10b981;
    --ui-amber: #f59e0b;
    --ui-red: #ef4444;
    --primary-link-color: rgba(255, 255, 255, 0.7);
    --secondary-link-color: rgba(255, 255, 255, 0.9);
}

html[data-bs-theme="dark"] {
    --bs-body-bg: var(--ui-bg);
    --bs-body-color: var(--ui-text);
    --bs-heading-color: var(--ui-text);
    --bs-border-color: var(--ui-border);
}

.about-card,
.info-card,
.gsl-banner,
.layer-card,
.site-surface,
.product-item,
.ddos-card,
.tos-wrapper,
.pp-wrapper,
.cta {
    background: linear-gradient(180deg, var(--ui-surface) 0%, #13192b 100%) !important;
    border: 1px solid var(--ui-border) !important;
    border-radius: 14px !important;
    box-shadow: var(--ui-shadow);
}

.about-hero,
.ddos-hero {
    border-bottom-color: var(--ui-border-soft) !important;
}

.product-item:hover {
    background: linear-gradient(180deg, var(--ui-surface-soft) 0%, #1a2340 100%) !important;
    border-color: rgba(75, 107, 197, 0.65) !important;
}

.review-row {
    background: var(--ui-border) !important;
    border-color: var(--ui-border) !important;
    border-radius: 14px !important;
    box-shadow: var(--ui-shadow);
}

.review-item {
    background: var(--ui-surface) !important;
}

.review-item:hover {
    background: var(--ui-surface-soft) !important;
}

.tos-wrapper h2,
.pp-wrapper h2,
.pp-wrapper th,
.pp-wrapper td {
    border-bottom-color: var(--ui-border-soft) !important;
}

body {
    background:
        linear-gradient(180deg, rgba(21, 26, 43, 0.96) 0%, var(--ui-bg) 34%, #0b0f16 100%);
    color: var(--ui-text);
    font-family: 'Inter', sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.montserrat {
	font-family: 'Inter', sans-serif;
}

.custom-navbar {
	position: relative;
	z-index: 1030;
	background: rgba(9, 11, 16, 0.94) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
	padding-top: 8px !important;
	padding-bottom: 8px !important;
	backdrop-filter: blur(14px);
}

.custom-navbar .navbar-brand img,
footer .navbar-brand img {
	filter: drop-shadow(0 8px 16px rgba(78, 161, 255, 0.18));
}

.custom-navbar .first-layer .nav-link,
.custom-navbar .second-layer .nav-link {
	color: rgba(238, 244, 255, 0.78) !important;
	letter-spacing: 0;
	transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.custom-navbar .second-layer .navbar-nav .nav-link {
	border-radius: 8px;
	margin: 0 2px;
}

.custom-navbar .second-layer .navbar-nav .nav-link:hover,
.custom-navbar .second-layer .navbar-nav .nav-link:focus {
	background-color: rgba(78, 161, 255, 0.1);
	color: #ffffff !important;
}

.custom-navbar .dropdown-menu {
	position: absolute;
	z-index: 1040;
	background: rgba(17, 23, 32, 0.98) !important;
	border: 1px solid var(--ui-border) !important;
	border-radius: 8px;
	box-shadow: var(--ui-shadow);
}

.custom-navbar .dropdown-item {
	color: rgba(238, 244, 255, 0.82) !important;
}

.custom-navbar .dropdown-item:hover,
.custom-navbar .dropdown-item:focus {
	background: rgba(78, 161, 255, 0.1) !important;
	color: #ffffff !important;
}

footer {
	margin-top: 108px;
	background: #0f111a;
	font-family: 'Inter', sans-serif;
}

.footer-divider {
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(58, 62, 99, 0) 0%, rgba(58, 62, 99, 1) 50%, rgba(58, 62, 99, 0) 100%);
	opacity: 0.6;
}

footer > div {
	margin-top: 0 !important;
	padding-left: 30px !important;
	padding-right: 30px !important;
}

footer .footer-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	text-decoration: none;
}

footer .footer-brand img {
	width: 35px;
	height: 35px;
	filter: drop-shadow(0 8px 16px rgba(78, 161, 255, 0.18));
}

footer h3 {
	color: #fff;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0;
	margin-bottom: 0.75rem;
}

footer .page-description,
footer .text-gray-500,
footer .text-body-primary {
	color: #a0a0a0 !important;
}

footer .nav-link {
	color: #a0a0a0 !important;
	transition: color 0.2s ease;
}

footer .nav-link:hover {
	color: #ffffff !important;
}

footer .last-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

footer .social-link {
	color: #a0a0a0;
	transition: color 0.2s ease;
}

footer .social-link:hover {
	color: #4b6bc5;
}

@media (max-width: 991.98px) {
	.custom-navbar {
		padding-left: 18px !important;
		padding-right: 18px !important;
	}
}

@media (max-width: 767.98px) {
	footer > div {
		padding-left: 18px !important;
		padding-right: 18px !important;
	}
}

.font-secondary {
	font-family: 'Inter', sans-serif;
}

.app-logo-default {
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	font-weight: 900;
}

.app-logo-default > img {
	height: 40px;
	width: 40px;
	margin-right: 10px;
}

footer > i {
	font-size: 1.5em;
	color: white;
}

@media screen and (max-width: 768px) {
	.topbar {
		display: none;
	}
}

.nav-link:hover {
	color: #4b6bc5 !important;
}

.app-toast-stack {
	position: fixed;
	top: 16px;
	right: 16px;
	z-index: 11000;
	width: min(360px, calc(100vw - 24px));
	display: flex;
	flex-direction: column;
	gap: 10px;
	pointer-events: none;
}

.app-toast {
	pointer-events: auto;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(17, 24, 39, 0.96);
	color: #e5edff;
	box-shadow: 0 10px 28px rgba(2, 8, 23, 0.42);
	overflow: hidden;
	animation: app-toast-in 180ms ease-out;
}

.app-toast__body {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 12px 11px 12px;
	font-size: 0.9rem;
	line-height: 1.35;
}

.app-toast__icon {
	margin-top: 2px;
}

.app-toast__close {
	border: 0;
	background: transparent;
	color: inherit;
	opacity: 0.7;
	margin-left: auto;
	line-height: 1;
	font-size: 1rem;
	padding: 0;
}

.app-toast__close:hover {
	opacity: 1;
}

.app-toast--success {
	border-color: rgba(16, 185, 129, 0.4);
}

.app-toast--error {
	border-color: rgba(239, 68, 68, 0.4);
}

.app-toast--warning {
	border-color: rgba(245, 158, 11, 0.45);
}

.app-toast--info {
	border-color: rgba(75, 107, 197, 0.4);
}

.app-toast__bar {
	height: 3px;
	width: 100%;
	transform-origin: left;
	animation: app-toast-time linear forwards;
}

.app-toast--success .app-toast__bar {
	background: #10b981;
}

.app-toast--error .app-toast__bar {
	background: #ef4444;
}

.app-toast--warning .app-toast__bar {
	background: #f59e0b;
}

.app-toast--info .app-toast__bar {
	background: #4b6bc5;
}

@keyframes app-toast-in {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes app-toast-time {
	from {
		transform: scaleX(1);
	}
	to {
		transform: scaleX(0);
	}
}

:root {
	--nav-bg: #0f111a;
	--nav-accent: #3a3e63d1;
	--primary-color: #4b6bc5;
	--text-muted: #a0a0a0;
	--dropdown-bg: #161925;
}

.navbar-custom {
	padding: 0.5rem 1rem;
	font-family: 'Inter', sans-serif;
}

.first-layer {
	font-size: 0.85rem;
}

.first-layer .nav-link {
	color: var(--text-muted) !important;
	transition: color 0.2s ease;
	display: flex;
	align-items: center;
	gap: 6px;
}

.first-layer .nav-link:hover {
	color: #fff !important;
}

.status-circle {
	height: 8px !important;
	width: 8px !important;
	background-color: #10b981 !important;
	border-radius: 50% !important;
	display: inline-block !important;
	margin-right: 5px !important;
	box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7) !important;
	animation: pulse-green 2s infinite !important;
}

@keyframes pulse-green {
	0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
	70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
	100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.custom-navbar .second-layer .nav-link {
	font-weight: 500;
	color: #e0e0e0 !important;
}

.custom-navbar .second-layer .nav-link i {
	margin-right: 6px;
	opacity: 0.7;
}

.custom-navbar .second-layer .dropdown-menu,
.dropdown-menu {
	background-color: var(--dropdown-bg);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	padding: 0;
	min-width: 200px;
	margin-top: 0 !important;
	overflow: hidden;
}

.custom-navbar .second-layer .dropdown-item,
.dropdown-item {
	color: #d1d1d1;
	padding: 0.5rem 1.25rem;
	font-size: 0.88rem;
	transition: all 0.2s ease;
}

.custom-navbar .second-layer .dropdown-item i,
.dropdown-item i {
	width: 20px;
	margin-right: 8px;
	font-size: 0.9rem;
	text-align: center;
	color: var(--primary-color);
}

.custom-navbar .second-layer .dropdown-item:hover,
.dropdown-item:hover {
	background-color: rgba(255, 255, 255, 0.05);
	color: #fff;
	padding-left: 1.5rem;
}

.custom-navbar .second-layer .dropdown-divider,
.dropdown-divider {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	margin: 0.4rem 0;
}

.btn-cart {
	background: var(--primary-color);
	border: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9rem;
	transition: transform 0.2s;
}

.btn-cart:hover,
.btn-cart:active,
.btn-cart:focus {
	background: var(--primary-color) !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

@media (max-width: 991.98px) {
	.custom-navbar .second-layer {
		padding-top: 1rem;
	}
	.custom-navbar .second-layer .dropdown-menu,
	.dropdown-menu {
		background: transparent;
		border: none;
		box-shadow: none;
		padding-left: 1rem;
	}
}
