/* Imports */
/* Icons */
/* @import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css"); */

/* @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css"); */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --theme-color: #1A1E3F;
    --primary: #1A1E3F;
    --bg-dark: #0B0E15;
    --bg-light: #1A1D29;
    --secondary: #ADC6FF;
    --gray: #C1C6D6;
    --light-gray: #414754;
    --primary-shadow: 0 0 0 0.2rem rgb(106 120 27 / 25%);
    --divider-color: #4c53242e;
    /* --light-primary: #24295B; */
    /* --bg-color: #414754; */
    --bg-dark-color: #0B0E15;
    --primary-color: #24295B;
    --secondary-color: ;
    --dark-gray-color: #272A32;
    --notification: #FFB4AB;
    --light-notification: #ffb4ab2b;
    --btn-primary: #4C8EFF;
    --danger-color: #93000A;
    --success-color: #4ADE80;
    --orange-color: #E56F15;
    --light-orange-color: #FB923C;
    --purple-color: #C084FC;


}

/* selection styling */
::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Scrollbar styling start  */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Scrollbar styling end  */


/* General Styling */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style-type: none;
    font-family: "Inter", sans-serif;
    overflow-wrap: break-word;
}

html {
    scroll-behavior: smooth;
}


body {
    overflow-x: clip;
}

a,
button {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: inline-block;
}

ul,
ol,
dl,
address,
label,
figure {
    margin-bottom: 0;
    padding: 0;
}

p {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.75;
    color: var(--gray);
}

/* Universal Classes Start */

.bg-primary {
    background: var(--primary) !important;
}

.bg-secondary {
    background: var(--secondary) !important;
}

.bg-gray {
    background-color: var(--gray) !important;
}

.text-success {
    color: #62C4A6 !important;
}

.text-danger {
    color: #FF5154 !important;
}

.text-primary {
    color: var(--primary) !important;
}

.color-secondary {
    color: var(--secondary) !important;
}

.color-danger {
    color: var(--danger-color) !important;
}

.color-peach {
    color: var(--notification) !important;
}

.text-gray {
    color: var(--gray) !important;
}

.bg-peach {
    background: var(--notification) !important;
}

.color-btn-primary {
    color: var(--btn-primary);
}

/* Universal Classes End */


/* breadcrumb stylig start */
.breadcrumb {
    background-color: transparent;
    padding: 0.75rem 0;
    margin-bottom: 0;
    font-size: 0.875rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: var(--gray);
}

.breadcrumb-item a {
    color: var(--secondary);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--gray);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--gray);
}

/* Buttons Styling Start */

.themeBtn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.themeBtn-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background-color: var(--btn-primary);
    color: #0b1120;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 24px;
    transition: background-color 0.2s ease;
}

.themeBtn-full:hover {
    background-color: #4a7be6;
}

.themeBtn--outline {
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--light-gray);
}

.themeBtn--outline:hover {
    background: var(--dark-gray-color);
    color: var(--white);
    border-color: var(--dark-gray-color);
}

.themeBtn--primary {
    background: var(--btn-primary);
    color: var(--bg-dark);
}

.themeBtn--primary:hover {
    background: var(--secondary);
    color: var(--bg-dark);
}

.themeBtn--secondary {
    background: var(--secondary);
    color: var(--bg-dark);
}

.filterBtn {
    background: transparent;
    border: 1px solid #2B3140;
    color: var(--gray);
    padding: 10px 18px;
    border-radius: 12px;
}

.filterBtn.active {
    background: var(--secondary);
    color: var(--bg-dark);
}

.iconBtn {
    width: 34px;
    height: 34px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--gray);
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.iconBtn:hover {
    background: var(--dark-gray-color);
    color: var(--white);
    border-color: transparent;
}

.floatingBtn {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 56px;
    height: 56px;
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.floatingBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background-color: var(--gray);
    color: var(--primary);
}

.toggleBtn {
    background: transparent;
    border: none;
    color: var(--gray);
    padding: 0.4rem 1.25rem;
    font-size: 0.8125rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.toggleBtn.active {
    background: var(--bg-dark);
    color: var(--white);
}

.clearBtn {
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: color 0.2s;
    font-weight: 500;
}

.clearBtn:hover {
    color: var(--white);
}

.plansBtn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
    font-weight: 500;
}

.plansBtn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.plansBtn.active {
    background: var(--secondary);
    color: var(--bg-dark);
    border-color: var(--secondary);
}

.ordersBtn {
    display: block;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.ordersBtn:hover {
    color: #e5e7eb;
    border-bottom-color: var(--light-gray);
}

.ordersBtn--active {
    color: var(--white);
    border-bottom-color: var(--secondary);
}

.toolbarBtn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--light-gray);
    border-radius: 0.375rem;
    color: #d1d5db;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.toolbarBtn:hover {
    background-color: var(--dark-gray-color);
    border-color: var(--gray);
    color: var(--white);
}

.toolbarBtn i {
    font-size: 0.875rem;
}

.paginationBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.5rem;
    background: transparent;
    border: 1px solid var(--light-gray);
    border-radius: 0.25rem;
    color: #d1d5db;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.paginationBtn:hover {
    background-color: var(--light-gray);
    border-color: var(--gray);
    color: var(--white);
}

.paginationBtn--active {
    background-color: var(--secondary);
    border-color: var(--btn-primary);
    color: var(--white);
    font-weight: 600;
}

.paginationBtn--active:hover {
    background-color: #3b7de6;
    border-color: #3b7de6;
}

.paginationBtn--disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

/* buttons styling end */


/* select2 styling start */
.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da !important;
    height: 42px !important;
    border-radius: 6px !important;
    display: flex;
    align-items: center;
    transition: border-color 0.2s ease-in-out;
    position: relative;
    background-color: var(--primary);
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--secondary) !important;
    outline: 0;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary) !important;
    color: var(--gray) !important;
}

.select2-dropdown {
    border: 1px solid var(--primary) !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: var(--gray);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 6px !important;
    background: var(--white);
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6c757d;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 10px;
    color: #dc3545;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    top: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 0 !important;
    position: static !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--gray);
}

/* select2 styling end */



/* ThemeBtn Start */

/* .themeBtn {
	width: fit-content;
	background-color: var(--primary);
	color: var(--white);
	border: 2px solid transparent;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 500;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.65rem 2.25rem;
}

.themeBtn:hover {
	background: var(--secondary);
	color: var(--white);
}

.themeBtn--white {
	background: var(--white);
	color: var(--primary);
	border: 1px solid var(--white);
}

.themeBtn--white:hover {
	color: var(--white);
}

.themeBtn--primary {
	background: var(--primary);
	color: var(--white);
	border: 1px solid var(--white);
}

.themeBtn--primary:hover {
	color: var(--primary);
	background: var(--white);
	border: 1px solid;
}

.themeBtn--gray {
	background: var(--gray);
	color: var(--white);
}

.themeBtn--green {
	background-color: #62C4A6;
	color: var(--white);
	border: 2px solid transparent;
}

.themeBtn--green:hover {
	background-color: #0DAB64;
}

.themeBtn--red {
	background-color: #FF5154;
	color: var(--white);
	border: 2px solid transparent;
}

.themeBtn--red:hover {
	background-color: #E94235;
}

.filterBtn {
	color: var(--primary);
}

.filterBtn:hover {
	background-color: var(--primary) !important;
	color: var(--white);
}

.filterBtn.show:hover {
	background-color: var(--primary) !important;
	color: var(--white);
}

.filterBtn.show:active,
.filterBtn.show:focus {
	background-color: var(--primary) !important;
	color: var(--white);
} */

/* ThemeBtn End */

/* Headings Start */

.secHeading {
    font-size: 2.25rem;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--theme-color);
    margin: 0;
}

.boldHeading {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--primary);
}

.welcomeHeading {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
}

.heading {
    font-size: 1.375rem;
    font-weight: 500;
    text-transform: capitalize;
}

.subHeading {
    font-size: 1.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.loginHeading {
    font-size: 4rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Headings End */

/* Dashboard Wrapper Start */

/* .dashboard-wrapper {
	width: 100%;
	min-height: 100vh;
	display: flex;
} */

/* Using Grid */
.dashboard-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 100vh;
}

/* .dashboard-content {
	width: calc(100% - 300px);
	padding: 2rem 2rem;
	background: #F8F8F8;
} */

.dashboard-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #F8F8F8;
}

.dashboard-card {
    background: var(--light-primary);
    border-radius: 1rem;
    padding: 1.5rem;
}

.dashboard-content__head {
    /* display: flex;
	align-items: center;
	justify-content: space-between; */
    margin-bottom: 1rem;
}

.dashboard-content__head .heading {
    margin: 0;
    color: var(--primary);
}

.back-arrow {
    font-size: 1.5rem;
    color: var(--black);
}

.back-arrow:hover {
    color: var(--primary);
}

/* Dashboard Wrapper End */

/* Sidebar Start */

/* .dashboard-sidebar {
	min-width: 300px;
	min-height: 100%;
	background: #FCFCFC80;
	border-right: 1px solid var(--gray);
	padding: 2rem 1.5rem;
} */

.sidebar-divider {
    height: 2px;
    background-color: var(--divider-color);
    margin: 0px 0px;
    list-style: none;
}

.dashboard-sidebar {
    background: var(--bg-light);
    border-right: 1px solid var(--light-gray);
    padding: 2rem 1.5rem;
    position: sticky;
    top: 0;
    height: 100svh;
    overflow-y: auto;

    /* flex column so bottom section pins to bottom */
    display: flex;
    flex-direction: column;
}

.dashboard-sidebar__logo {
    width: 200px;
    display: block;
    /* margin: 0 auto 2rem; */
    margin: 1.5rem 0;
}

.dashboard-sidebar__logo img {
    width: 100%;
}

.dashboard-sidebar__list>li+li {
    margin-top: 0.5rem;
}

.dashboard-sidebar__list li a:not(.dashboard-sidebar__submenu-link) {
    font-size: 1rem;
    font-weight: 500;
    background: transparent;
    color: var(--gray);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    position: relative;
}

.dashboard-sidebar__list li a:is(:hover, .active) {
    background: var(--dark-gray-color);
    color: var(--secondary);
}

.dashboard-sidebar__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.dashboard-sidebar__link {
    flex: 1;
}

.dashboard-sidebar__toggle {
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-sidebar__toggle:hover {
    color: var(--primary);
}

.dashboard-sidebar__toggle[aria-expanded="true"] {
    color: var(--primary);
}

.dashboard-sidebar__toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.dashboard-sidebar__toggle i {
    transition: transform 0.3s ease;
}

.dashboard-sidebar__submenu {
    margin-top: 0.5rem;
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.dashboard-sidebar__submenu-link {
    font-size: 1rem;
    font-weight: 400;
    background: none !important;
    color: var(--gray);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dashboard-sidebar__submenu-link img {
    width: 16px;
    filter: brightness(0) saturate(100%) invert(87%) sepia(9%) saturate(527%) hue-rotate(219deg) brightness(70%) contrast(93%);
    transition: all 300ms ease-in-out;
}

.dashboard-sidebar__submenu-link:is(:hover, .active) {
    color: var(--primary);
    font-weight: 500;
}

.dashboard-sidebar__submenu-link:is(:hover, .active) img {
    filter: brightness(0) saturate(100%) invert(70%) sepia(17%) saturate(1754%) hue-rotate(321deg) brightness(103%) contrast(99%);
}




/* Sidebar Bottom — Settings & Support */

.sidebar-bottom {
    margin-top: auto;
    padding-top: 0.5rem;
}

.sidebar-bottom__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 0.75rem;
}

/* Sidebar End */


/* Header Start */

/* .header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
} */

.header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-light);
    padding: .5rem 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.header-form {
    width: 25%;
    background: var(--bg-dark);
    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
    box-shadow: 0 0 20px 1px #00000020;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
    padding: .3rem 0.75rem;
}

.header-form i {
    font-size: 1.125rem;
    color: var(--gray);
}

.header-form input {
    width: 100%;
    border: none;
    outline: none;
    background: inherit;
    color: var(--white);
}

.header-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-links__icon {
    width: 60px;
    aspect-ratio: 1;
    font-size: 1.5rem;
    /* background: var(--white); */
    color: var(--gray);
    border-radius: 100%;
    /* box-shadow: 0 0 20px 1px #00000020; */
    display: grid;
    place-items: center;
    position: relative;
}

.header-links__icon .notification-badge {
    width: 10px;
    aspect-ratio: 1;
    background: var(--notification);
    border-radius: 100%;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
}

.header-links__profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-links__profile h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    text-align: right;
    margin: 0;
}

.header-links__profile h3 span {
    font-weight: 400;
    color: var(--gray);
    display: block;
}

.header-links__profile img {
    width: 40px;
    aspect-ratio: 1;
    border-radius: 100%;
}

/* Header End */

/* dashboard wrapper start */

.dashboard-home {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    background-color: var(--bg-dark);
}

.dashboard-home .row {
    margin-bottom: 1.5rem;
}

.dashboard-home .row:last-child {
    margin-bottom: 0;
}

/* dashboard wrapper end */



/* Tables Start */



/* .page-link {
	color: var(--secondary) !important;
	box-shadow: none !important;
}

.page-item.active .page-link {
	background: var(--secondary);
	color: var(--white) !important;
	border: none;
} */


/* Form Styling with Theme Colors */

.form-control {
    border: 1px solid var(--divider-color);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: var(--primary-shadow);
}

.input-group-text {
    background-color: transparent;
    border: 1px solid var(--divider-color);
    border-right: none;
    color: var(--gray);
}

.form-control {
    border-left: none;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* divider styling start */
.vertical-divider {
    width: 1px;
    height: 45px;
    background-color: var(--gray);
}

/* divider styling end */



/* headings start */
.page-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.page-subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray);
}

/* headings end */


/* Cards styling start */
.stats-card {
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.875rem;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    /* height: 100%; */
    cursor: pointer;
}

.stats-card a {
    display: block;
}

.stats-card:hover {
    border-color: rgba(173, 198, 255, 0.2);
    transform: translateY(-2px);
}

.stats-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.stats-card__label {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.stats-card-plain-label--icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stats-card-plain-label--icon i {
    font-size: 1.75rem;
}

.stats-card-plain-value--numbers {
    font-size: .75rem;
    color: var(--secondary);
}

.stats-card__icon {
    width: 50px;
    height: 50px;
    background: rgba(173, 198, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.5rem;
}

.no-kpi-trend--notification,
.stats-card__icon--notification,
.no-kpi-sparkline--notification i {
    color: var(--notification);
}

.stats-card__value {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.stats-card__footer {
    display: flex;
    align-items: center;
    justify-content: start;
}

.no-kpi-trend {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.no-kpi-trend--up {
    color: var(--secondary);
}

.no-kpi-trend--down {
    color: #FF5154;
}

.no-kpi-sparkline {
    color: var(--light-gray);
    font-size: 2rem;
    margin-left: 30px;
}

/* Panels */
.table-panel {
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.875rem;
    overflow: hidden;
}

.table-panel__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
}

.table-panel__header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.table-panel__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.table-panel__subtitle {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--gray);
    margin: 0.25rem 0 0 0;
}

.table-panel__body {
    padding: 1.25rem 1.5rem;
}

/* Legend */
.no-legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    color: var(--gray);
}

.no-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* Priority Badge */
.no-priority-badge {
    background: var(--danger-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Critical Events Panel */
.no-events-panel {
    display: flex;
    flex-direction: column;
}

.no-events-list {
    flex: 1;
    padding: 0.5rem 0;
}

.events-item {
    display: flex;
    gap: 0.875rem;
    padding: 0.875rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
}

.events-item:last-child {
    border-bottom: none;
}

.events-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.events-item__icon {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.icon--peach,
.tag--peach {
    background: rgba(254, 196, 0, 0.1);
    color: var(--notification);
}

.icon--secondary,
.tag--secondary {
    background: rgba(173, 198, 255, 0.1);
    color: var(--secondary);
}

/* .events-item__icon--warning {
	background: rgba(254, 196, 0, 0.1);
	color: var(--notification);
}

.events-item__icon--danger {
	background: rgba(255, 81, 84, 0.1);
	color: var(--notification);
}

.events-item__icon--review {
	background: rgba(173, 198, 255, 0.1);
	color: var(--secondary);
} */

/* .events-item__icon--normal {
	background: rgba(98, 196, 166, 0.1);
	color: var(--gray);
} */

.icon--gray,
.tag--gray {
    background: rgba(98, 196, 166, 0.1);
    color: var(--gray);
}

.events-item__content {
    flex: 1;
    min-width: 0;
}

.events-item__title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.events-item__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.events-item__time {
    font-size: 0.75rem;
    color: var(--gray);
    white-space: nowrap;
}

.events-item__desc {
    font-size: 0.8125rem;
    color: var(--gray);
    margin: 0 0 0.4rem 0;
    line-height: 1.4;
}

.events-item__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Event Tags */
.no-event-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.no-event-tag--critical {
    background: rgba(255, 81, 84, 0.15);
    color: #FF5154;
}

.no-event-tag--urgent {
    background: rgba(254, 196, 0, 0.15);
    color: #FEC400;
}

.no-event-tag--review {
    background: rgba(173, 198, 255, 0.15);
    color: var(--secondary);
}

.no-event-tag--normal {
    background: rgba(98, 196, 166, 0.15);
    color: #62C4A6;
}

.no-event-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.no-event-link:hover {
    color: var(--white);
}

/* Events Footer */
.events-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.no-view-all-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.no-view-all-link:hover {
    color: var(--white);
}



/* Stream Table */
.stream-table {
    border-collapse: collapse;
    width: 100%;
}

.stream-table thead tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stream-table thead th {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.875rem 1.5rem;
    white-space: nowrap;
}

.stream-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
}

.stream-table tbody tr:last-child {
    border-bottom: none;
}

.stream-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.stream-table tbody td {
    font-size: 0.875rem;
    color: var(--gray);
    padding: 1rem 1.5rem;
    vertical-align: middle;
    white-space: nowrap;
}

/* Order ID link */
.no-order-id {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.no-order-id:hover {
    color: var(--white);
}

/* Customer Cell */
.no-customer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.customer__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.customer__name {
    font-weight: 500;
    color: var(--white);
}

/* Amount */
.no-amount {
    font-weight: 600;
    color: var(--white) !important;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}



.status-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

/* tstetss */

.status-badge--success {
    background: var(--success-color);
    color: var(--success-color);
}

.status-badge--pending {
    background: var(--light-notification);
    color: var(--notification);
}

.status-badge--chruned {
    background: rgba(255, 81, 84, 0.15);
    color: #FF5154;
}



/* =========================================================
   Plans Management Dashboard (stats-card-plain- prefix)
   ========================================================= */


/* Retired Plans Styles */
.retired-note {
    font-size: 0.75rem;
    color: var(--gray);
    display: block;
    max-width: 200px;
    white-space: normal;
    line-height: 1.4;
}

.restore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    background: rgba(173, 198, 255, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(173, 198, 255, 0.15);
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.restore-btn:hover {
    background: var(--secondary);
    color: var(--bg-dark);
    border-color: var(--secondary);
}

.restore-btn i {
    font-size: 0.6875rem;
}

/* Status Badge - Archived */
.status-badge--chruned {
    background: rgba(255, 81, 84, 0.15);
    color: #FF5154;
}

.status-badge--chruned .dot {
    background: #FF5154;
}   

/* Filter Panel */
.stats-card-plain-filter-panel {
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.875rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stats-card-plain-filter-left {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    flex: 1;
}

.stats-card-plain-filter-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stats-card-plain-filter-label {
    font-size: 0.75rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

/* Custom Select */
.stats-card-plain-select {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.875rem;
    outline: none;
    cursor: pointer;
    font-weight: 500;
}

.stats-card-plain-select option {
    background: var(--bg-dark);
    color: var(--white);
}

/* Toggle Group */
.stats-card-plain-toggle-group {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    padding: 0.25rem;
}



/* Status Pills */
.stats-card-plain-status-group {
    display: flex;
    gap: 0.5rem;
}

.stats-card-plain-status-pill {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    padding: 0.4rem 1.25rem;
    font-size: 0.8125rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.stats-card-plain-status-pill.active {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* Clear Btn */


/* Table Specifics */
.stats-card-plain-plan-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stats-card-plain-plan-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stats-card-plain-plan-icon--blue {
    background: rgba(173, 198, 255, 0.1);
    color: var(--secondary);
}

.stats-card-plain-plan-icon--orange {
    background: rgba(196, 135, 90, 0.1);
    color: #C4875A;
}

.stats-card-plain-plan-icon--gray {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray);
}

.stats-card-plain-plan-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stats-card-plain-plan-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.875rem;
}

.stats-card-plain-plan-sku {
    font-size: 0.75rem;
    color: var(--gray);
}

.plain-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray);
    letter-spacing: 0.05em;
}

.badge-dark {
    background: var(--dark-gray-color) !important;
    font-size: 0.8rem !important;

}

.plain-badge--blue {
    background: rgba(173, 198, 255, 0.15);
    color: var(--secondary);
}

.stats-card-plain-margin-text {
    font-weight: 600;
    color: #C4875A;
}

/* Toggle Switch */
.stats-card-plain-switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    margin: 0;
}

.stats-card-plain-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.stats-card-plain-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
}

.stats-card-plain-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: var(--gray);
    transition: .4s;
    border-radius: 50%;
}

.stats-card-plain-switch input:checked+.stats-card-plain-slider {
    background-color: var(--secondary);
}

.stats-card-plain-switch input:checked+.stats-card-plain-slider:before {
    transform: translateX(16px);
    background-color: var(--bg-dark);
}


/* Action Link Styles */
.action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    background: var(--secondary);
    color: var(--bg-dark);
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.action-link:hover {
    background: var(--btn-primary);
    color: var(--white);
    transform: translateY(-1px);
}

.action-link i {
    font-size: 0.75rem;
}

/* Update stats-card-plain-plan-cell to display region badge and name side by side */
.stats-card-plain-plan-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stats-card-plain-plan-icon {
    flex-shrink: 0;
}

/* Pagination */
.stats-card-plain-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-card-plain-page-info {
    font-size: 0.8125rem;
    color: var(--gray);
    font-weight: 500;
}

.stats-card-plain-page-controls {
    display: flex;
    gap: 0.3rem;
}



/* Bottom KPIs */
.stats-card-plain {
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.875rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stats-card-plain-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.stats-card-plain-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stats-card-plain-sub {
    font-size: 0.8125rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}



.stats-card-plain-bg-icon {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 4rem;
    color: var(--light-gray);
}

.stats-card-plain-progress-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 1rem;
    overflow: hidden;
}

.stats-card-plain-progress-fill {
    height: 100%;
    background: var(--secondary);
    border-radius: 3px;
}


/* customer styling */

.no-form-label {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.no-form-control {
    background: rgba(255, 255, 255, .03);
    border: 1px solid #2B3140;
    color: var(--white);
    min-height: 45px;
}

.no-form-control:focus {
    background: rgba(255, 255, 255, .05);
    border-color: var(--secondary);
    box-shadow: none;
    color: #fff;
}


.no-customer-table {
    width: 100%;
}

.no-customer-table th {
    padding: 20px;
    color: var(--gray);
    font-size: 14px;
    border-bottom: 1px solid #2B3140;
}

.no-customer-table td {
    padding: 20px;
    border-bottom: 1px solid #2B3140;
    color: #fff;
}

.no-user {
    display: flex;
    gap: 15px;
    align-items: center;
}

.no-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.no-user h6 {
    margin: 0;
    color: #fff;
}

.no-user span {
    color: var(--gray);
    font-size: 14px;
}

.no-esim-badge {
    background: #20283B;
    color: var(--secondary);
    padding: 8px 12px;
    border-radius: 30px;
    font-size: 13px;
}

.status-badge--warning {
    background: rgba(255, 180, 171, .15);
    color: var(--notification);
}

.no-table-footer {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.no-pagination {
    display: flex;
    gap: 10px;
}

.no-pagination button {
    background: transparent;
    border: 1px solid #2B3140;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 10px;
}

.no-pagination button.active {
    background: var(--secondary);
    color: #000;
}


/* Datatable styling start */

/* DataTables Footer */
.dataTables_wrapper .dataTables_info {
    color: var(--gray);
    font-size: 15px;
}

.dataTables_wrapper .pagination {
    gap: 10px;
}

.dataTables_wrapper .page-item .page-link {
    background: transparent;
    border: 1px solid #2B3140;
    color: #fff;
    min-width: 45px;
    height: 45px;
    border-radius: 10px !important;

    display: flex;
    align-items: center;
    justify-content: center;
}

.dataTables_wrapper .page-item.active .page-link {
    background: rgba(255, 255, 255, .08);
    border-color: #4A5162;
    color: #fff;
}

.dataTables_wrapper .page-link:hover {
    background: rgba(255, 255, 255, .05);
    color: #fff;
}

.dataTables_wrapper .page-item.disabled .page-link {
    background: transparent;
    color: var(--gray);
}

/* Remove default spacing */
.dataTables_wrapper .row {
    margin: 0;
    padding: 20px;
}


/* here is updated data table styling start*/


/* .dataTables_wrapper .dataTables_paginate {
    margin: 0 !important;
    padding: 0 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px !important;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray, rgba(255, 255, 255, 0.7)) !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 6px !important;
    margin: 0 2px !important;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
    min-width: 36px;
    text-align: center;
    box-shadow: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    color: #fff !important;
    background: var(--primary, #4F46E5) !important;
    border-color: var(--primary, #4F46E5) !important;
    font-weight: 600;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: #fff !important;
    background: rgba(79, 70, 229, 0.15) !important;
    border-color: var(--primary, #4F46E5) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    color: rgba(255, 255, 255, 0.25) !important;
    cursor: not-allowed;
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    opacity: 0.5;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.dataTables_wrapper .dataTables_paginate .paginate_button.next {
    padding: 6px 16px !important;
}

.dataTables_wrapper .dataTables_info {
    color: var(--gray, rgba(255, 255, 255, 0.6));
    font-size: 0.875rem;
    padding-top: 0.5rem !important;
}

.dataTables_wrapper .row:last-child {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    padding-top: 0.5rem !important;
}

.dataTables_wrapper .row:last-child .col-sm-12 {
    flex: 0 0 auto !important;
    max-width: none !important;
} */


/* here is updated data table styling end */


/* Table */
#customerTable thead th {
    color: var(--gray);
    font-size: 14px;
    border-bottom: 1px solid #2B3140;
    padding: 20px;
}

#customerTable tbody td {
    padding: 20px;
    border-bottom: 1px solid #2B3140;
    color: #fff;
}



/* test */


.no-customer-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.no-customer-cell img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.no-customer-name {
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
}

.no-customer-email {
    color: var(--gray);
    font-size: 0.75rem;
}

.no-esim-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(173, 198, 255, 0.08);
    color: var(--secondary);
    font-size: 0.75rem;
}

.no-esim-pill strong {
    color: var(--white);
}

.status-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    text-transform: uppercase;
}

.status-badge--success {
    background: rgba(98, 196, 166, 0.15);
    color: #62C4A6;
}

.status-badge--warning {
    background: rgba(255, 180, 171, 0.15);
    color: #FFB4AB;
}

.status-badge--failed {
    background: rgba(255, 81, 84, 0.15);
    color: #FF5154;
}



/* ============================================
   Orders Page Styles (BEM Methodology)
   ============================================ */



/* --- Orders Panel Container --- */
.table-panel-orders {
    background-color: var(--primary);
    border: 1px solid var(--dark-gray-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* --- Orders Toolbar (Tabs + Action Buttons) --- */
.table-panel-orders-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

/* Custom Tabs Navigation */
.table-panel-orders-tabs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid var(--dark-gray-color);
}

.table-panel-orders-tabs__item {
    margin-bottom: -2px;
}



.table-panel-orders-tabs__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 6px;
    height: 6px;
    background-color: var(--secondary);
    border-radius: 50%;
    padding: 3px;
    margin-left: 0.25rem;
    vertical-align: middle;
}

/* Toolbar Actions */
.table-panel-orders-toolbar__actions {
    display: flex;
    gap: 0.5rem;
}



/* --- Tab Content / Panes --- */
.table-panel-orders-content__pane {
    display: none;
}

.table-panel-orders-content__pane--active {
    display: block;
}

/* --- Table Styles --- */
.orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.orders-table__head {
    border-bottom: 1px solid var(--dark-gray-color);
}

.orders-table__header {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.orders-table__row {
    border-bottom: 1px solid var(--dark-gray-color);
    transition: background-color 0.2s;
}

.orders-table__row:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.orders-table__cell {
    padding: 1rem;
    vertical-align: middle;
    font-size: 0.875rem;
    color: #e5e7eb;
    white-space: nowrap;
}

.orders-table__cell--id {
    font-weight: 700;
    color: var(--gray);
}

.orders-table__cell--amount {
    color: var(--white);
    font-weight: 500;
}

/* Date Cell */
.orders-table__date {
    color: #e5e7eb;
    line-height: 1.4;
}

.orders-table__date-time {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 2px;
}

/* Customer Cell */
.customer-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.customer-cell__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
    text-transform: uppercase;
}

.customer-cell__avatar--secondary {
    background-color: var(--light-gray);
    color: var(--white);
}

.customer-cell__avatar--warning {
    background-color: #f59e0b;
    color: var(--bg-dark);
}

.customer-cell__info {
    line-height: 1.3;
}

.customer-cell__name {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0;
}

.customer-cell__email {
    color: var(--gray);
    font-size: 0.75rem;
}

/* Plan Badge */
.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--dark-gray-color);
    color: #d1d5db;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.plan-badge i {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge--pending {
    background-color: rgba(234, 179, 8, 0.15);
    color: #facc15;
    border: 1px solid rgba(234, 179, 8, 0.4);
}

.status-badge--success {
    background-color: rgba(34, 197, 94, 0.15);
    color: var(--success-color);
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.status-badge--failed {
    background-color: rgba(239, 68, 68, 0.15);
    color: var(--notification);
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.status-badge--refunded {
    background-color: rgba(107, 114, 128, 0.2);
    color: var(--gray);
    border: 1px solid rgba(107, 114, 128, 0.4);
}

/* Lifecycle Stepper */
.lifecycle {
    display: flex;
    align-items: center;
    gap: 0;
}

.lifecycle__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--light-gray);
    flex-shrink: 0;
}

.lifecycle__dot--active {
    background-color: var(--secondary);
    box-shadow: 0 0 6px rgba(76, 142, 255, 0.6);
}

.lifecycle__line {
    width: 16px;
    height: 2px;
    background-color: var(--light-gray);
    margin: 0 2px;
}

.lifecycle__line--active {
    background-color: var(--secondary);
}

/* --- Pagination --- */
.orders-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.5rem;
}

.orders-pagination__info {
    color: var(--gray);
    font-size: 0.875rem;
}

.orders-pagination__controls {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Common Card/Panel styles */
.panel {
    background-color: #1a1d2d;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #2a2e40;
    height: 100%;
    box-sizing: border-box;
}

/* Left Panel - Provisioning Logs */
.rt-log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.rt-log-header__title {
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
    color: #ffffff;
}

.rt-log-header a {
    color: #a4b1cd;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.rt-log-body-wrapper {
    background-color: #141622;
    border-radius: 8px;
    padding: 20px;
    font-family: "Courier New", Courier, monospace;
    font-size: 0.85rem;
    color: #a4b1cd;
}

.log-line {
    display: block;
    margin-bottom: 16px;
}

.log-line:last-child {
    margin-bottom: 0;
}

.log-time {
    color: #8a96b1;
    margin-right: 12px;
}

.log-success {
    color: #d0d6e8;
    margin-right: 8px;
}

.log-info {
    color: #6b9dfc;
    margin-right: 8px;
}

.log-warn {
    color: #d99c58;
    margin-right: 8px;
}

/* Right Panel - Internal Notes */
.internal-notes-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.internal-notes-subtitle {
    font-size: 0.85rem;
    color: #8a96b1;
    margin-top: 0;
    margin-bottom: 24px;
    line-height: 1.4;
}

.note-card {
    background-color: #242736;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.note-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.note-card.blue-indicator::before {
    background-color: #92b4f2;
}

.note-card.red-indicator::before {
    background-color: #f29292;
}

.note-card h6 {
    margin: 0 0 6px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.note-card p {
    margin: 0;
    font-size: 0.85rem;
    color: #9ba6c4;
    line-height: 1.4;
}

/* Primary Button */



/* esim provising styling */

/* Base Dashboard Card Block */
.analytics-card {
    background-color: var(--primary);
    /* Dark theme card background */
    border: 1px solid var(--primary);
    border-radius: 14px;
    padding: 24px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.analytics-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.analytics-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.analytics-card__badge {
    background-color: var(--bg-dark);
    color: var(--btn-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.analytics-card__body {
    flex-grow: 1;
}

.analytics-card__footer {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    font-size: 13px;
    color: #8b92a5;
}

.analytics-card__stat-value {
    color: var(--white);
}

/* Analytics Tabs */
.analytics-card__tabs {
    display: flex;
    gap: 0.25rem;
    background: var(--bg-dark);
    border-radius: 0.375rem;
    padding: 0.2rem;
}

.analytics-tab {
    padding: 0.25rem 0.75rem;
    background: transparent;
    border: none;
    border-radius: 0.25rem;
    color: var(--gray);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.analytics-tab:hover {
    color: var(--white);
}

.analytics-tab--active {
    background: var(--secondary);
    color: var(--bg-dark);
}

.analytics-tab--active:hover {
    background: var(--secondary);
    color: var(--bg-dark);
}

/* Consumption Chart */
.consumption-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    height: 450px;
    padding: 0 0.25rem;
}

.consumption-chart__bar {
    flex: 1;
    min-height: 8px;
    background: var(--secondary);
    border-radius: 4px 4px 0 0;
    transition: height 0.6s ease;
    opacity: 0.7;
}

.consumption-chart__bar:hover {
    opacity: 1;
}

/* Consumption Labels */
.consumption-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding: 0 0.25rem;
}

.consumption-labels__item {
    font-size: 0.625rem;
    color: var(--gray);
    font-weight: 500;
    text-align: center;
    flex: 1;
    letter-spacing: 0.02em;
}

/* Element: Latency Chart Specifics */
.latency-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100px;
    gap: 6px;
    padding-bottom: 4px;
}

.latency-chart__bar {
    background-color: var(--light-gray);
    width: 100%;
    border-radius: 2px 2px 0 0;
    transition: height 0.3s ease;
}


.latency-chart__bar--highlighted {
    background-color: var(--secondary)
}

.traffic-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.traffic-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.traffic-list__label {
    width: 110px;
    font-size: 14px;
    color: var(--gray);
    flex-shrink: 0;
}

.traffic-list__progress-track {
    background-color: var(--light-gray);
    height: 8px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.traffic-list__progress-bar {
    height: 100%;
    border-radius: 4px;
}

/* Modifiers for Progress Colors */
.traffic-list__progress-bar--blue {
    background-color: var(--btn-primary);
}

.traffic-list__progress-bar--orange {
    background-color: var(--orange-color);
}

.traffic-list__progress-bar--light-orange {
    background-color: var(--light-orange-color);
}

.traffic-list__progress-bar--green {
    background-color: var(--success-color);
}

.traffic-list__progress-bar--purple {
    background-color: var(--purple-color);
} 

.traffic-list__percentage {
    width: 40px;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
}


/* financial screen styling */

/* Variance Danger Badge */
.no-badge--danger {
    background-color: var(--danger-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Reconciliation Section Layout */
.no-recon {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 28px;
}

.no-recon__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.no-recon__label {
    font-size: 14px;
    color: var(--gray);
}

.no-recon__metrics {
    display: flex;
    align-items: center;
    gap: 20px;
}

.no-recon__volume {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

.no-recon__amount {
    font-size: 15px;
    font-weight: 600;
    color: #b4c6ef;
    /* Light blueish color from image */
    width: 80px;
    text-align: right;
}

.no-recon__amount--danger {
    color: #ffb4ab;
    /* Soft peach color for invoice amount */
}

/* Progress Tracks */
.no-recon__progress-track {
    background-color: #1c1f30;
    height: 10px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.no-recon__progress-bar {
    height: 100%;
    border-radius: 5px;
}

.no-recon__progress-bar--blue {
    background-color: var(--secondary);
}

.no-recon__progress-bar--peach {
    background-color: var(--notification);
}

/* Callout Info Box Styling */
.no-callout {
    background-color: #171926;
    border: 1px solid #222538;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.no-callout__icon {
    color: #ea580c;
    /* Noticeable Amber/Orange color for warning icon */
    font-size: 16px;
    margin-top: 2px;
}

.no-callout__text {
    font-size: 13px;
    color: #8b92a5;
    line-height: 1.5;
    margin: 0;
}

/* Refund Chart Category Axis Labels */
.no-refund-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
}

.no-refund-labels__item {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
    text-align: center;
    flex: 1;
}


.table-panel__link {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.table-panel__link:hover {
    color: var(--gray);
    text-decoration: underline;
}

.no-provider {
    display: flex;
    align-items: center;
    gap: 12px;
}

.no-provider__icon {
    width: 32px;
    height: 32px;
    background-color: var(--light-gray);
    border: 1px solid #282c42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 13px;
}

.no-provider__name {
    font-weight: 500;
    color: #ffffff;
}

/* .status-badge--settled {
    background-color: var(--light-gray); 
    color: var(--secondary);            
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
}

.status-badge--pending {
    background-color: var(--light-gray); 
    color: var(--notification);            
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
} */

/* Text utility for description column if needed */
.text-muted {
    color: var(--gray) !important;
}



/* t-mobile styling start */

/* Sync Grid Container */
.sync {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 16px 0;
    gap: 24px;
}

@media (max-width: 576px) {
    .sync {
        flex-direction: column;
        gap: 40px;
    }
}

/* Individual Sync Item Block */
.sync__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

/* Wrapper to position HTML text over canvas accurately */
.sync__chart-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

/* Inner overlay alignment elements */
.sync__center-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    /* Allows chart hover behind text if needed */
}

.sync__percentage {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
}

.sync__label {
    font-size: 10px;
    font-weight: 700;
    color: #565d73;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

/* Footer Description Note below charts */
.sync__note {
    font-size: 14px;
    color: #8b92a5;
    line-height: 1.6;
    margin: 0;
}


/* Core Layout Container */
.connectivity {
    padding: 4px 0;
}

/* Icon Container with absolute positioning for the dot */
.connectivity__icon-wrapper {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 42px;
}

.connectivity__icon-wrapper i {
    font-size: 1.75rem;
    color: var(--success-color);
}

.connectivity__icon {
    font-size: 32px;
    color: var(--success-color);
}

.connectivity__dot {
    position: absolute;
    bottom: 2px;
    right: -2px;
    width: 13px;
    height: 13px;
    background-color: var(--success-color);
    border: 2px solid var(--bg-dark);
    border-radius: 50%;
}

.connectivity__status {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.connectivity__title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 2px 0;
}

.connectivity__subtitle {
    font-size: 13px;
    font-weight: 500;
    color: var(--success-color);
    margin: 0;
}

.connectivity__divider {
    border: 0;
    border-top: 1px solid #282c42;
    margin: 20px 0;
    opacity: 1;
}

.connectivity__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.connectivity__label {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
}

.connectivity__value {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.5;
}

.connectivity__value--latency {
    color: #b4c6ef;
    font-weight: 600;
}

.connectivity__value.text-muted {
    color: #64748b !important;
}


.monitor {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 6px 4px;
    font-family: 'SFMono-Regular', Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.monitor__row {
    display: flex;
    align-items: center;
    padding: 2px 0 2px 16px;
    border-left: 2px solid transparent;
    font-size: 14px;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.monitor__row--success {
    border-left-color: rgba(34, 197, 94, 0.4);
}

.monitor__row--warning {
    border-left-color: rgba(249, 115, 22, 0.4);
}

.monitor__row--danger {
    border-left-color: rgba(251, 113, 133, 0.4);
}

.monitor__time {
    color: #565d73;
    width: 105px;
    flex-shrink: 0;
}

.monitor__status {
    width: 115px;
    font-weight: 600;
    flex-shrink: 0;
}

.monitor__status--success {
    color: var(--success-color);
}

.monitor__status--warning {
    color: var(--notification);
}

.monitor__status--danger {
    color: var(--danger-color);
}

.monitor__message {
    color: #cbd5e1;
}

.monitor__highlight {
    color: #b4c6ef;
    font-weight: 500;
}

.monitor__pulse {
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: var(--success-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.monitor__pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--success-color);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--success-color);
}

.webhook--icon i {
    color: var(--secondary);
}

.roaming-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 8px;
}

.roaming-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.roaming-item__indicator {
    width: 6px;
    height: 48px;
    border-radius: 4px;
    display: inline-block;
    flex-shrink: 0;
}

.roaming-item__indicator--blue {
    background-color: #b4c6ef;
    box-shadow: 0 0 8px rgba(180, 198, 239, 0.3);
}

.roaming-item__indicator--grey {
    background-color: #3b4256;
}

.roaming-item__title {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.roaming-item__badges {
    display: flex;
    gap: 8px;
}

.dash-badge {
    background-color: var(--light-gray);
    border: 1px solid #2a2f4a;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.analytics-card__watermark {
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-size: 160px;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    transform: rotate(-15deg);
}


.analytics-card__text-badge {
    font-size: 13px;
    color: var(--light-gray);
    font-weight: 500;
}

.traffic-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 140px;
    gap: 6px;
    padding: 10px 0;
}

.traffic-chart__bar {
    flex: 1;
    background-color: var(--light-gray);
    border-radius: 3px 3px 0 0;
    transition: background-color 0.2s ease;
}

.traffic-chart__bar:hover {
    background-color: var(--secondary);
}

.analytics-card__note {
    font-size: 12px;
    color: var(--light-gray);
    text-align: center;
    letter-spacing: 0.2px;
}

/* Bar Labels Styles */
.latency-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding: 0 0.25rem;
}

.latency-labels__item {
    font-size: 0.625rem;
    color: var(--gray);
    font-weight: 500;
    text-align: center;
    flex: 1;
    letter-spacing: 0.02em;
}


/* ============================================================
   Create Plan Screen — plan-builder-* Components
   ============================================================ */

/* ── Panel Container ──────────────────────────────────────── */
.plan-builder-panel {
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.875rem;
    overflow: hidden;
}

.plan-builder-panel__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    text-align: left;
}

.plan-builder-panel__header-icon {
    width: 36px;
    height: 36px;
    background: rgba(173, 198, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.plan-builder-panel__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.plan-builder-panel__body {
    padding: 1.5rem;
}


/* ── Form Field ───────────────────────────────────────────── */
.plan-field__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
}

.plan-field__input {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.plan-field__input::placeholder {
    color: var(--light-gray);
}

.plan-field__input:focus {
    border-color: var(--secondary);
    background: rgba(173, 198, 255, 0.04);
}

.plan-field__textarea {
    resize: vertical;
    min-height: 90px;
}

/* ── Category Card ────────────────────────────────────────── */
.plan-category-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.625rem;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    height: 100%;
}

.plan-category-card:hover {
    border-color: rgba(173, 198, 255, 0.25);
    background: rgba(173, 198, 255, 0.04);
}

.plan-category-card--active {
    border-color: var(--secondary);
    background: rgba(173, 198, 255, 0.07);
}

.plan-category-card__icon {
    width: 36px;
    height: 36px;
    background: rgba(173, 198, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.plan-category-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.plan-category-card__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.plan-category-card__desc {
    font-size: 0.75rem;
    color: var(--gray);
}


/* ── Data Allowance Input ─────────────────────────────────── */
.plan-data-input {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.plan-data-input:focus-within {
    border-color: var(--secondary);
}

.plan-data-input__number {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    width: 0;
    -moz-appearance: textfield;
}

.plan-data-input__number::-webkit-inner-spin-button,
.plan-data-input__number::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.plan-data-input__unit {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    outline: none;
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0 0.875rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.plan-data-input__unit option {
    background: var(--bg-dark);
}


/* ── Data Range Slider ────────────────────────────────────── */
.plan-data-slider__range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.plan-data-slider__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--secondary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 3px rgba(173, 198, 255, 0.15);
    transition: box-shadow 0.2s ease;
}

.plan-data-slider__range::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 5px rgba(173, 198, 255, 0.2);
}

.plan-data-slider__range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--secondary);
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.plan-data-slider__ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.plan-data-slider__ticks span {
    font-size: 0.6875rem;
    color: var(--light-gray);
    font-weight: 500;
}


/* ── Validity Period Buttons ──────────────────────────────── */
.plan-validity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.plan-validity-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    color: var(--gray);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.625rem 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.plan-validity-btn:hover {
    border-color: rgba(173, 198, 255, 0.25);
    color: var(--white);
    background: rgba(173, 198, 255, 0.04);
}

.plan-validity-btn--active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--bg-dark);
    font-weight: 700;
}

.plan-validity-btn--active:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--bg-dark);
}


/* ── Price Input ──────────────────────────────────────────── */
.plan-price-input {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.plan-price-input:focus-within {
    border-color: var(--secondary);
}

.plan-price-input__symbol {
    padding: 0 0 0 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray);
    flex-shrink: 0;
}

.plan-price-input__field {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1rem 0.75rem 0.4rem;
    width: 0;
    -moz-appearance: textfield;
}

.plan-price-input__field::-webkit-inner-spin-button,
.plan-price-input__field::-webkit-outer-spin-button {
    -webkit-appearance: none;
}


/* ── Profit Summary ───────────────────────────────────────── */
.plan-profit-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.625rem;
    padding: 1rem 1.25rem;
}

.plan-profit-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 0;
}

.plan-profit-summary__label {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 400;
}

.plan-profit-summary__value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--white);
}

.plan-profit-summary__value--highlight {
    color: var(--orange-color);
}

.plan-profit-summary__progress-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    margin-top: 0.875rem;
    overflow: hidden;
}

.plan-profit-summary__progress-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.4s ease;
}


/* ── Storefront Preview Card ──────────────────────────────── */
.plan-preview-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.plan-preview-card__bg {
    position: absolute;
    inset: 0;
}

.plan-preview-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.plan-preview-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 12, 22, 0.92) 0%,
            rgba(10, 12, 22, 0.5) 50%,
            rgba(10, 12, 22, 0.15) 100%);
}

.plan-preview-card__content {
    position: relative;
    z-index: 2;
    padding: 1.25rem;
}

.plan-preview-card__tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.plan-preview-card__info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
}

.plan-preview-card__name-group {
    flex: 1;
}

.plan-preview-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.2rem 0;
    line-height: 1.3;
}

.plan-preview-card__subline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.plan-preview-card__price-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.plan-preview-card__price-label {
    font-size: 0.5625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.15rem;
}

.plan-preview-card__price {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}


/* ── Preview Tags ─────────────────────────────────────────── */
.plan-preview-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: 0.25rem;
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.plan-preview-tag--region {
    background: rgba(173, 198, 255, 0.2);
    color: var(--secondary);
}

.plan-preview-tag--validity {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
}


/* ── Publish Notice ───────────────────────────────────────── */
.notice-message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.625rem;
}

.notice-message__icon {
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.notice-message__text {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Protocols stylings start  */

/* Protocols List Styles */
.protocols-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.protocol-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.protocol-item:last-child {
    border-bottom: none;
}

.protocol-item__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.protocol-item__info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.protocol-item__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.protocol-item__desc {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Switch styles already exist in your CSS */
.stats-card-plain-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.stats-card-plain-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.stats-card-plain-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--light-gray);
    border-radius: 34px;
    transition: 0.3s ease;
}

.stats-card-plain-slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: 0.3s ease;
}

.stats-card-plain-switch input:checked + .stats-card-plain-slider {
    background: var(--secondary);
}

.stats-card-plain-switch input:checked + .stats-card-plain-slider:before {
    transform: translateX(20px);
}

/* pricing matrics */

/* Pricing Metrics Styles */
.pricing-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pricing-metric {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.pricing-metric__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-metric__label {
    font-size: 0.8125rem;
    color: var(--gray);
    font-weight: 500;
}

.pricing-metric__value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}


.pricing-metric__progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.pricing-metric__bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
}

/* country connectivity styling start  */

.country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.country-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-dark);
    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
    padding: 0.3rem .75rem;
    transition: all 0.2s ease;
}

.country-search:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(173, 198, 255, 0.1);
}

.country-search i {
    color: var(--gray);
    font-size: 0.875rem;
}

.country-search__input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 0.875rem;
    padding: 0.25rem 0;
}

.country-search__input::placeholder {
    color: var(--gray);
    font-weight: 400;
}

.country-grid::-webkit-scrollbar {
    width: 3px;
}

.country-grid::-webkit-scrollbar-thumb {
    background: var(--light-gray);
    border-radius: 10px;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 0.375rem;
    transition: background 0.2s ease;
    cursor: pointer;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.country-item:hover {
    background: var(--primary);
    border-color: var(--gray);
}

.country-item__flag {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.country-item__flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-item__flag--more {
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 0.75rem;
}

.country-item__info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1;
    min-width: 0;
}

.country-item__name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--white);
}

.country-item__carriers {
    font-size: 0.625rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.country-item--more .country-item__name {
    color: var(--secondary);
}

.country-item--more .country-item__carriers {
    color: var(--light-gray);
}

/* new region styling start */

/* Region Fields */
.region-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.region-field__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.region-field__input {
    background: var(--bg-dark);
    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
    padding: 0.6rem 0.875rem;
    color: var(--white);
    font-size: 0.875rem;
    outline: none;
    transition: all 0.2s ease;
    width: 100%;
}

.region-field__input:focus {
    border-color: var(--secondary);
}

.region-field__input::placeholder {
    color: var(--gray);
}

/* Icon Upload */
.region-icon-upload {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-dark);
    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
    padding: 0.5rem 0.875rem;
}

.region-icon-upload__preview {
    width: 40px;
    height: 40px;
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.25rem;
}

.region-icon-upload__btn {
    padding: 0.35rem 0.875rem;
    background: var(--secondary);
    color: var(--bg-dark);
    border: none;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.region-icon-upload__btn:hover {
    background: var(--btn-primary);
    color: var(--white);
}

.region-icon-upload__hint {
    font-size: 0.6875rem;
    color: var(--gray);
    margin-left: auto;
}

/* Country Selection */
.region-country-select {
    background: var(--bg-dark);
    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
    padding: 0.5rem 0.875rem;
}

.region-country-select__count {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.region-country-select__search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-dark);
    border: 1px solid var(--light-gray);
    border-radius: 0.375rem;
    padding: 0.3rem 0.75rem;
}

.region-country-select__search i {
    color: var(--gray);
    font-size: 0.75rem;
}

.region-country-select__input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 0.8125rem;
}

.region-country-select__input::placeholder {
    color: var(--gray);
}

/* Selected Countries Tags */
.region-selected-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    background: var(--bg-dark);
    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    min-height: 44px;
}

.region-country-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    background: rgba(173, 198, 255, 0.1);
    color: var(--secondary);
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.region-country-tag--more {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray);
}

/* Config List */
.config-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.config-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0;
}

.config-item__label {
    font-size: 0.875rem;
    color: var(--white);
    font-weight: 500;
}

/* Commercials */
.commercials-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.commercial-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.commercial-item__label {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

.commercial-item__input-group {
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
    overflow: hidden;
}

.commercial-item__symbol {
    padding: 0.5rem 0.75rem;
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.commercial-item__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.5rem 0.75rem;
    color: var(--white);
    font-size: 0.875rem;
}

.commercial-item__input::placeholder {
    color: var(--gray);
}

/* Region Preview */
.region-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-stat__label {
    font-size: 0.8125rem;
    color: var(--gray);
    font-weight: 500;
}

.preview-stat__value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}

.preview-stat__sub {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray);
    margin-left: 0.25rem;
}

.preview-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0.25rem 0;
}

.preview-section__title {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.preview-zone-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.preview-zone-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
}

.preview-zone-tag--add {
    background: rgba(173, 198, 255, 0.1);
    color: var(--secondary);
    cursor: pointer;
    gap: 0.3rem;
}

.preview-zone-tag--add i {
    font-size: 0.625rem;
}

.preview-zone-tag--add:hover {
    background: rgba(173, 198, 255, 0.2);
}
