:root {
    --White: #fff;
    --Primary: #161326;
    --YellowGreen: #a0bcfa;
    --Orchid: #c388f7;
    --Khaki: #ecff79;
    --LightSkyBlue: #afc0ff;
    --Black: #161326;
    --GrayDark: #6d6d6d;
    --Gray: #a4a4a9;
    --Gainsboro: #f8f8f8;
    --Salmon: #fd7972;
    --LightGray: #d2dddc;
    --Orange: #24293e;
    --LimeGreen: #24293e;
    --Green: #2bc155;
}

/**
  * Name: Critso - Crypto Dashboard Template
  * Version: 1.0.1
  * Author: Themesflat
  * Author URI: http://www.themesflat.com
*/
/**

  	* Reset Browsers
    * General
	* Elements
  	* Forms
	* Typography
	* Extra classes
    * link style
    * tf-container

*/
/* Reset Browsers
-------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background: var(--White);
  line-height: 1;
  padding: 0 !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: none;
}

a img {
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
}

select {
  max-width: 100%;
}

/* General
-------------------------------------------------------------- */
body,
button,
input,
select,
textarea {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--Black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-y: auto;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

strong,
b,
cite {
  font-weight: bold;
}

dfn,
cite,
em,
i,
blockquote {
  font-style: italic;
}

abbr,
acronym {
  border-bottom: 1px dotted #e0e0e0;
  cursor: help;
}

.btn-link:focus,
.btn-link:hover,
mark,
ins {
  text-decoration: none;
}

sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

small {
  font-size: 75%;
}

big {
  font-size: 125%;
}

address {
  font-style: italic;
  margin: 0 0 20px;
}

code,
kbd,
tt,
var,
samp,
pre {
  margin: 20px 0;
  padding: 4px 12px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  overflow-x: auto;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  border-radius: 0;
  height: auto;
}

svg,
svg path {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Elements
-------------------------------------------------------------- */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

hr {
  margin-bottom: 20px;
  border: dashed 1px #ccc;
}

/* List */
ul,
ol {
  padding: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

li {
  list-style: none;
}

ul li,
ol li {
  padding: 0;
}

dl,
dd {
  margin: 0 0 20px;
}

dt {
  font-weight: bold;
}

del,
.disable {
  text-decoration: line-through;
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* Table */
table,
th,
td {
  border: 0;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  border-width: 1px 0 0 1px;
  margin: 0 0 30px;
  table-layout: fixed;
  width: 100%;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

th,
td {
  padding: 8px 12px;
}

/* Media */
embed,
object,
video {
  margin-bottom: 20px;
  max-width: 100%;
  vertical-align: middle;
}

p > embed,
p > iframe,
p > object,
p > video {
  margin-bottom: 0;
}

/* Forms
-------------------------------------------------------------- */
/* Fixes */
button,
input {
  line-height: normal;
}

button,
input,
select,
textarea {
  font-size: 100%;
  line-height: inherit;
  margin: 0;
  vertical-align: baseline;
}

input,
textarea,
select {
  font-size: 14px;
  max-width: 100%;
  background: #fff;
  /* Removing the inner shadow on iOS inputs */
}

textarea {
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  vertical-align: top;
  /* Improves readability and alignment in all browsers */
}

input[type="checkbox"] {
  display: inline;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: button;
  border: 0;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--White);
  cursor: pointer;
  vertical-align: sub;
  /* Addresses excess padding in IE8/9 */
}

input[type="search"] {
  -webkit-appearance: textfield;
  /* Addresses appearance set to searchfield in S5, Chrome */
}

input[type="search"]::-webkit-search-decoration {
  /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Remove chrome yellow autofill */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f7f7f7 inset;
}

/* Reset search styling */
input[type="search"] {
  outline: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

/* Placeholder color */
::-webkit-input-placeholder {
  color: #171412;
}

::-moz-placeholder {
  color: #171412;
  opacity: 1;
}

/* Since FF19 lowers the opacity of the placeholder by default */
:-ms-input-placeholder {
  color: #171412;
}

/* Typography
-------------------------------------------------------------- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Inter", sans-serif;
  margin: 0;
  font-weight: 800;
  text-rendering: optimizeLegibility;
}

h1,
.h1 {
  font-size: 42px;
  line-height: 132px;
}

h2,
.h2 {
  font-size: 34px;
  line-height: 79px;
}

h3,
.h3 {
  font-size: 28px;
  line-height: 37px;
}

h4,
.h4 {
  font-size: 24px;
  line-height: 31px;
}

h5,
.h5 {
  font-size: 20px;
  line-height: 28px;
}

h6,
.h6 {
  font-size: 16px;
  line-height: 25px;
}

.label-01 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.label-02 {
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
}

.f16-regular {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.f16-light {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}

.f14-bold {
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
}

.f14-regular {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}

.f14-light {
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
}

.f12-bold {
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
}

.f12-medium {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
}

.font-poppins {
  font-family: "Poppins", sans-serif !important;
}

.f12-regular {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.text-White {
  color: var(--White);
}

.text-Primary {
  color: var(--Primary);
}

.text-YellowGreen {
  color: var(--YellowGreen);
}

.text-Orchid {
  color: var(--Orchid) !important;
}

.text-Khaki {
  color: var(--Khaki);
}

.text-LightSkyBlue {
  color: var(--LightSkyBlue);
}

.text-Black {
  color: var(--Black);
}

.text-GrayDark {
  color: var(--GrayDark);
}

.text-Gray {
  color: var(--Gray);
}

.text-Gainsboro {
  color: var(--Gainsboro);
}

.text-Salmon {
  color: var(--Salmon);
}

.text-LightGray {
  color: var(--LightGray);
}

.text-Orange {
  color: var(--Orange);
}

.text-LimeGreen {
  color: var(--LimeGreen);
}

.bg-White {
  background-color: var(--White);
}

.bg-Primary {
  background-color: var(--Primary) !important;
}

.bg-YellowGreen {
    /*background-color: #e54d35;*/
    background-color: #ff7e6a
}

.bg-Orchid {
  background-color: var(--Orchid);
}

.bg-Khaki {
  background-color: var(--Khaki);
}

.bg-LightSkyBlue {
  background-color: var(--LightSkyBlue);
}

.bg-Black {
  background-color: var(--Black);
}

.bg-GrayDark {
  background-color: var(--GrayDark);
}

.bg-Gray {
  background-color: var(--Gray);
}

.bg-Gainsboro {
  background-color: var(--Gainsboro) !important;
}

.bg-Salmon {
  background-color: var(--Salmon);
}

.bg-LightGray {
  background-color: var(--LightGray);
}

.bg-Orange {
  background-color: var(--Orange);
}

.bg-LimeGreen {
  background-color: var(--LimeGreen);
}

.bg-blue-1 {
  background-color: #9fc8ff !important;
}

.bg-pink-1 {
  background-color: #e5caff !important;
}

.line {
  border-bottom: 1px solid var(--LightGray);
}

/* Extra classes
-------------------------------------------------------------- */
.hidden {
  display: none;
}

.block {
  display: block;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed !important;
}

.position-unset {
  position: unset !important;
}

.transform-none {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
}

.over-hidden {
  overflow: hidden;
}

.z-5 {
  z-index: 5;
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.flex-grow {
  flex-grow: 1;
}

.row-reverse {
  flex-direction: row-reverse;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
    align-items: center;
    flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.text-end {
  text-align: end;
}

.text-center {
  text-align: center;
}

.gap2 {
  gap: 2px !important;
}

.gap6 {
  gap: 6px !important;
}

.gap4 {
  gap: 4px !important;
}

.gap7 {
  gap: 7px !important;
}

.gap8 {
  gap: 8px !important;
}

.gap9 {
  gap: 9px !important;
}

.gap10 {
  gap: 10px !important;
}

.gap12 {
  gap: 12px !important;
}

.gap14 {
  gap: 14px !important;
}

.gap15 {
  gap: 15px !important;
}

.gap16 {
  gap: 16px !important;
}

.gap18 {
  gap: 18px !important;
}

.gap20 {
  gap: 20px !important;
}

.gap21 {
  gap: 21px !important;
}

.gap22 {
  gap: 22px !important;
}

.gap24 {
  gap: 24px !important;
}

.gap30 {
  gap: 30px !important;
}

.gap34 {
  gap: 34px !important;
}

.gap36 {
  gap: 36px !important;
}

.gap40 {
  gap: 40px !important;
}

.row-gap-0 {
  row-gap: 0px !important;
}

.row-gap-16 {
  row-gap: 16px !important;
}

.ml-6 {
  margin-left: 6px !important;
}

.mt-3 {
  margin-top: 3px !important;
}

.mt-4 {
  margin-top: 4px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mb-1 {
  margin-bottom: 1px !important;
}

.mb-2 {
  margin-bottom: 2px !important;
}

.mb-3 {
  margin-bottom: 3px !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-6 {
  margin-bottom: 6px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-14 {
  margin-bottom: 14px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-22 {
  margin-bottom: 22px !important;
}

.mb-23 {
  margin-bottom: 23px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-27 {
  margin-bottom: 27px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-20 {
  padding-bottom: 20px;
}

.w-full {
  width: 100% !important;
}

.w-half {
  width: 50% !important;
}

.w-max {
  width: max-content !important;
}

.h-full {
  height: 100%;
}

.capitalize {
  text-transform: capitalize;
}

.italic {
  font-style: italic;
}

.e-resize {
  cursor: e-resize;
}

.f-20 {
  font-size: 20px;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cursor-pointer {
  cursor: pointer;
}

.auto-slide .swiper-wrapper {
  transition-timing-function: linear;
}
.auto-slide .swiper-wrapper .swiper-slide {
  width: auto;
}

#wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: 100%;
}

/* link style
-------------------------------------------------------------- */
a {
    text-decoration: none;
    color: var(--Primary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
}
a:hover,
a:focus {
  color: var(--YellowGreen);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* tf-container
-------------------------------------------------------------- */
.tf-container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  max-width: 100%;
}
.tf-container .row {
  margin-left: -12px !important;
  margin-right: -12px !important;
}
.tf-container .row > * {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.tf-container.full {
  width: 100%;
}

.text-tiny {
  font-size: 12px;
  line-height: 14.4px;
}

.body-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.body-title-2 {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
}

.body-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display:flex;
}

.view-all {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  color: #0a0a0c;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
}
.view-all i {
  font-size: 16px;
}

.box-icon-trending {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 7px;
}
.box-icon-trending i {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 21px;
  color: var(--Palette-Blue-Gray-300);
}
.box-icon-trending .number {
  line-height: 19px;
}
.box-icon-trending.down i {
  color: var(--Palette-Red-500);
}
.box-icon-trending.up i {
  color: var(--Palette-Green-500);
}
.box-icon-trending.color-violet i {
  color: #8f77f3 !important;
}
.box-icon-trending.color-blue i {
  color: #2377fc !important;
}

.wg-user {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 117px;
  gap: 12px;
  text-align: start;
}
.wg-user .image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.wg-user .image img {
  border-radius: 50%;
}
.wg-user .name {
  margin-bottom: -1px;
}
.wg-user.type-lg .image {
  width: 75px;
  height: 75px;
}

.wg-chart-default {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
  flex-direction: column;
  padding: 24px;
  border-radius: 14px;
  background: var(--White);
  box-shadow: 0px 4px 24px 2px rgba(20, 25, 38, 0.05);
}
.wg-chart-default > .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.wg-chart-default .image {
  width: 52px;
  height: 52px;
  position: relative;
}
.wg-chart-default .image .icon {
  color: var(--Secondary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wg-chart-default .image.type-white i {
  color: #fff;
}

.wg-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 24px;
  flex-direction: column;
  gap: 24px;
  border-radius: 12px;
  background: var(--White);
  box-shadow: 0px 4px 24px 2px rgba(10, 10, 12, 0.0509803922);
}

.title-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.title-box i {
  font-size: 18px;
  color: var(--Secondary);
}

.wg-product {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wg-product .name {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 14px;
}
.wg-product .title {
  margin-bottom: 4px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
.wg-product .title a {
  color: var(--Main-Dark);
}
.wg-product .title a:hover {
  color: var(--Secondary);
}
.wg-product .title.line-clamp-2 {
  -webkit-line-clamp: 2;
}
.wg-product .image {
  width: 50px;
  height: 50px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.wg-product .image.w36 {
  width: 36px;
  height: 36px;
}
.wg-product .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wg-product .price {
  color: var(--Main-Dark);
}
.wg-product .sale {
  color: var(--Main-Dark);
}

.product-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-right: 5px;
}
.product-item .image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  padding: 5px;
  border-radius: 10px;
  background: #eff4f8;
}
.product-item .image.small {
  width: 36px;
  height: 36px;
  padding: 4px;
}
.product-item .image.no-bg {
  padding: 0;
  background-color: unset;
}
.product-item .country {
  flex-shrink: 0;
}
.product-item .country img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.product-item .name a {
  line-height: 17px;
}
.product-item .name a:hover {
  color: var(--Secondary) !important;
}
.product-item .text-tiny {
  line-height: 20px;
}
.product-item:hover {
  background-color: var(--hv-item) !important;
  border-radius: 10px;
}

.divider {
  height: 0.5px;
  align-self: stretch;
  background: #edf1f5;
}

.block-not-available {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: 24px;
  padding: 2px 8px;
  gap: 10px;
  border-radius: 4px;
  background: var(--Surface-3);
  color: #ff5200;
  font-size: 12px;
  font-weight: 500;
}
.block-not-available.bg-1 {
  background: #ededed !important;
}

.block-stock {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: 24px;
  padding: 2px 8px;
  gap: 10px;
  border-radius: 4px;
  background: var(--Surface-3);
  color: var(--Secondary);
  font-size: 12px;
  font-weight: 500;
}
.block-stock.bg-1 {
  background: #ededed;
}

.block-available {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: 24px;
  padding: 2px 8px;
  gap: 10px;
  border-radius: 4px;
  background: var(--Surface-3);
  color: var(--22-c-55-e);
  font-size: 12px;
  font-weight: 500;
}
.block-available.bg-1 {
  background: #ededed;
}

.block-pending {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: 24px;
  padding: 2px 8px;
  gap: 10px;
  border-radius: 4px;
  background: var(--Surface-3);
  color: #ffa800;
  font-size: 12px;
  font-weight: 500;
}
.block-pending.bg-1 {
  background: #ededed;
}

.block-tracking {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: 30px;
  padding: 2px 19px;
  gap: 10px;
  border-radius: 4px;
  background: var(--Surface-3);
  color: #2275fc;
  font-size: 12px;
  font-weight: 700;
}
.block-tracking.bg-1 {
  background: #ededed;
}

.block-published {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: 24px;
  padding: 2px 8px;
  gap: 10px;
  border-radius: 4px;
  background: var(--Surface-3);
  color: #2275fc;
  font-size: 12px;
  font-weight: 500;
}
.block-published.bg-1 {
  background: #ededed;
}

.block-warning {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  width: fit-content;
  padding: 13px 15px;
  gap: 10px;
  border-radius: 12px;
  background: var(--Surface-3);
  color: #ff5200;
}
.block-warning i {
  font-size: 24px;
}
.block-warning div {
  color: #ff5200;
}
.block-warning.type-main {
  background-color: #fff9f6;
  color: var(--Secondary);
}
.block-warning.type-main .text {
  color: var(--Secondary);
  word-break: break-all;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}

.wg-pagination {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 9px;
}
.wg-pagination li {
  min-width: 40px;
  text-align: center;
  color: var(--08091-b);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
.wg-pagination li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  gap: 10px;
  border-radius: 50%;
  background-color: var(--Surface-3);
  color: var(--Main-Dark);
}
.wg-pagination li a i {
  font-size: 18px;
  color: var(--Surface-2);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-pagination li:last-child a,
.wg-pagination li:first-child a {
  background-color: transparent;
  border: 1px solid var(--Surface-2);
  width: 42px;
  height: 42px;
}
.wg-pagination li:hover a,
.wg-pagination li.active a {
  background: var(--Secondary);
  border-color: var(--Secondary);
  color: #fff;
}
.wg-pagination li:hover i,
.wg-pagination li.active i {
  color: #fff;
}

.block-legend {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 6px;
  align-items: center;
  align-self: stretch;
}
.block-legend .dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
}
.block-legend .dot.w-10 {
  width: 10px;
  height: 10px;
}

.breadcrumbs a .text-tiny {
  color: var(--Surface-2);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.breadcrumbs a:hover .text-tiny {
  color: var(--Secondary) !important;
}
.breadcrumbs .text-tiny {
  font-size: 16px;
}
.breadcrumbs i {
  font-size: 16px;
  color: var(--Surface-2);
}

.upload-image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.upload-image .item {
  border-radius: 12px;
  overflow: hidden;
  max-width: 237px;
  max-height: 208px;
}
.upload-image .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.upload-image .up-load {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--Surface-3);
  border: 1px dashed var(--Secondary);
}
.upload-image .uploadfile {
  text-align: center;
  width: 100%;
  height: 298px;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  flex-direction: column;
}
.upload-image .uploadfile.h250 {
  height: 250px;
}
.upload-image .uploadfile .icon {
  font-size: 40px;
  color: var(--Secondary);
}
.upload-image .uploadfile .text-tiny {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.upload-image .uploadfile input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.upload-image .uploadfile img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  object-fit: cover;
}
.upload-image .uploadfile img.has-img {
  opacity: 1;
  visibility: visible;
}
.upload-image.style-1 {
  flex-wrap: wrap;
}
.upload-image.style-1 .item {
  width: 48%;
}
.upload-image.style-1 .item img {
  height: 132px;
}
.upload-image.style-1 .item.up-load {
  min-height: 134px;
  padding: 0 30px;
}
.upload-image.style-2 .item img {
  height: 218px;
}
.upload-image.style-2 .item.up-load {
  min-height: 220px;
  padding: 0 30px;
}

.wg-filter {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px 30px;
}
.wg-filter .show {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.wg-filter .show .select select {
  width: 70px;
  padding: 6px 16px;
}
.wg-filter .show .select::after {
  right: 16px;
  font-size: 14px;
}
.wg-filter form {
  width: 100%;
  max-width: 458px;
}
.wg-filter .form-search input {
  padding: 15px 22px 15px 44px;
  font-size: 14px;
}
.wg-filter .form-search input::placeholder {
  font-size: 14px;
}

.list-icon-function {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}
.list-icon-function .item {
  font-size: 20px;
  cursor: pointer;
}
.list-icon-function .item.eye {
  color: #ff7433;
}
.list-icon-function .item.edit {
  color: #22c55e;
}
.list-icon-function .item.trash {
  color: #db1215;
}

.wg-order-detail {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
}
.wg-order-detail .right {
  max-width: 410px;
}
.wg-order-detail .summary-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.wg-order-detail .summary-item > div:first-child {
  width: 89px;
  flex-shrink: 0;
}

.order-track {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 24px;
}
.order-track .infor {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
.order-track .infor > div:first-child {
  width: 110px;
}

.road-map {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.road-map .road-map-item {
  width: 100%;
  text-align: center;
  position: relative;
}
.road-map .road-map-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  top: 23px;
  left: 0;
  background-color: #ecf0f4;
}
.road-map .road-map-item .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  gap: 10px;
  border-radius: 50%;
  background: #ecf0f4;
  margin: auto;
  margin-bottom: 20px;
  font-size: 24px;
  color: #fff;
  position: relative;
}
.road-map .road-map-item h6 {
  margin-bottom: 6px;
}
.road-map .road-map-item .body-text,
.road-map .road-map-item h6 {
  color: var(--Note);
}
.road-map .road-map-item.active .icon {
  background: var(--Secondary);
}
.road-map .road-map-item.active .body-text {
  color: var(--Surface-2);
}
.road-map .road-map-item.active h6 {
  color: var(--Main-Dark);
}
.road-map .road-map-item.active:before {
  background-color: var(--Secondary);
}

.user-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.user-item .image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.user-item .body-text {
  color: var(--Main-Dark);
}
.user-item .name a {
  line-height: 17px;
}
.user-item .name a:hover {
  color: var(--Secondary) !important;
}
.user-item .text-tiny {
  line-height: 20px;
}

.radio-buttons {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}
.radio-buttons .item {
  position: relative;
}
.radio-buttons .item label {
  width: max-content;
  height: 36px;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 6px 10px 6px 38px;
  gap: 6px;
  border-radius: 1000px;
  background: #f8f8f8;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.radio-buttons .item label div {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.radio-buttons .item div {
  color: #575864;
}
.radio-buttons .item input {
  position: absolute;
  top: 6px;
  left: 8px;
  width: 24px;
  height: 24px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgb(255, 255, 255) !important;
  border-radius: 50% !important;
}
.radio-buttons .item input:checked::before {
  position: absolute;
  content: "\e932";
  font-family: "icomoon";
  width: 24px;
  height: 24px;
  font-size: 14px;
  color: var(--Primary);
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.radio-buttons .item input:checked ~ label {
  background-color: var(--Primary);
}
.radio-buttons .item input:checked ~ label * {
  color: #fff;
}
.radio-buttons .item input:checked > .item {
  background: var(--Primary);
}

.select-colors-theme {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}
.select-colors-theme.style-1 .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--Surface-3);
  color: var(--Surface-2);
  font-weight: 400;
  border: 0;
}
.select-colors-theme.style-1 .item.active {
  background-color: var(--Primary);
  color: var(--White);
}
.select-colors-theme.style-1 .item.active::after {
  display: none;
}
.select-colors-theme .item {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid #edf1f5;
  position: relative;
  cursor: pointer;
}
.select-colors-theme .item.active::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: "icomoon";
  content: "\e932";
  font-size: 18px;
  color: #2bc155;
}
.select-colors-theme .item.color-fff {
  background-color: #fff;
}
.select-colors-theme .item.color-1E293B {
  background-color: #1e293b;
}
.select-colors-theme .item.color-C0FAA0 {
  background-color: #c0faa0;
}
.select-colors-theme .item.color-3A3043 {
  background-color: #3a3043;
}
.select-colors-theme .item.color-2377FC {
  background-color: #2377fc;
}
.select-colors-theme .item.color-FF7433 {
  background-color: #ff7433;
}
.select-colors-theme .item.color-35988D {
  background-color: #35988d;
}
.select-colors-theme .item.color-7047D6 {
  background-color: #7047d6;
}
.select-colors-theme .item.color-F2F7FB {
  background-color: #f2f7fb;
}
.select-colors-theme .item.color-252E3A {
  background-color: #252e3a;
}
.select-colors-theme .item.color-1E1D2A {
  background-color: #1e1d2a;
}
.select-colors-theme .item.color-1B2627 {
  background-color: #1b2627;
}
.select-colors-theme .item.image {
  width: 86px;
  height: 155px;
  border-radius: 12px;
  overflow: hidden;
}
.select-colors-theme .item.image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#preload {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#preload .preloading {
  text-align: center;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#preload .preloading span {
  content: "";
  display: block;
  border-radius: 50%;
  border: 2px solid var(--Primary);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-left-color: transparent;
  -webkit-animation: rotate360 2s infinite linear;
  -moz-animation: rotate360 2s infinite linear;
  -ms-animation: rotate360 2s infinite linear;
  -o-animation: rotate360 2s infinite linear;
  animation: rotate360 2s infinite linear;
}

#line-chart-4 .apexcharts-grid-borders,
#line-chart-4 .apexcharts-gridline,
#line-chart-4 .apexcharts-data-labels {
  display: none;
}

.tf-progress-bar {
  height: 8px;
  width: 100%;
  background-color: rgba(192, 250, 160, 0.18);
  position: relative;
  border-radius: 99px;
  overflow: hidden;
}
.tf-progress-bar span {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--YellowGreen);
}
.tf-progress-bar.type-Orchid {
  background-color: rgba(195, 136, 247, 0.18);
}
.tf-progress-bar.type-Orchid span {
  background-color: var(--Orchid);
}
.tf-progress-bar.type-LightSkyBlue {
  background-color: rgba(175, 192, 255, 0.18);
}
.tf-progress-bar.type-LightSkyBlue span {
  background-color: var(--LightSkyBlue);
}

.layout-width-boxed .chart-small {
  width: 56px;
  height: 36px;
}

.chart-small {
  width: 100px;
  height: 36px;
}
.chart-small #small-chart-1 linearGradient stop {
  stop-color: #161326 !important;
  stop-opacity: 1 !important;
}
.chart-small #small-chart-2 linearGradient stop:first-child {
  stop-color: #c2faa3 !important;
  stop-opacity: 1 !important;
}
.chart-small #small-chart-2 linearGradient stop:nth-child(2) {
  stop-color: #f8fef5 !important;
  stop-opacity: 1 !important;
}
.chart-small #small-chart-2 linearGradient stop:last-child {
  stop-color: #f8fef5 !important;
  stop-opacity: 1 !important;
}
.chart-small #small-chart-3 linearGradient stop:first-child {
  stop-color: #c2faa3 !important;
  stop-opacity: 1 !important;
}
.chart-small #small-chart-3 linearGradient stop:nth-child(2) {
  stop-color: #ecfde2 !important;
  stop-opacity: 1 !important;
}
.chart-small #small-chart-3 linearGradient stop:last-child {
  stop-color: #ecfde2 !important;
  stop-opacity: 1 !important;
}
.chart-small #small-chart-4 linearGradient stop:first-child {
  stop-color: #161326 !important;
  stop-opacity: 1 !important;
}
.chart-small #small-chart-4 linearGradient stop:nth-child(2) {
  stop-color: rgba(212, 254, 117, 0.0509803922) !important;
  stop-opacity: 1 !important;
}
.chart-small #small-chart-4 linearGradient stop:last-child {
  stop-color: rgba(212, 254, 117, 0.0509803922) !important;
  stop-opacity: 1 !important;
}

input.tf-check {
  position: relative;
  width: 38px;
  height: 20px;
  border-radius: 99px;
  background-color: var(--Gray);
  -webkit-appearance: none;
  appearance: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
input.tf-check::after {
  position: absolute;
  content: "";
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--White);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
input.tf-check:checked {
  background-color: var(--Green);
}
input.tf-check:checked::after {
  left: 20px;
}

.tf-variant-item:not(:last-child) {
  border-bottom: 1px dashed var(--line);
}
.tf-variant-item > * {
  width: 25%;
  padding: 17px 0;
}
.tf-variant-item input {
  pointer-events: none;
}

.box-status {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: max-content;
  font-weight: 600;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.2px;
  padding: 8px 10px;
  border-radius: 8px;
}
.box-status.type-red {
  background-color: #ffecec;
  color: #fd4f4f;
}

.line-chart-twoline,
.donut-chart,
.candlestick-chart,
.line-chart {
  min-height: unset !important;
}

.donut-chart .apexcharts-tooltip {
  background-color: #d2dddc !important;
}
.donut-chart .apexcharts-tooltip .apexcharts-tooltip-series-group {
  color: #000 !important;
  background-color: #d2dddc !important;
}

.line-chart {
  margin-left: 15px;
}

.box-item {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.layout-wrap .section-content-right {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex-grow: 1;
}
.layout-wrap .section-content-right .main-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 84px;
  padding-left: 256px;
  background: var(--White);
  transition: all 0.3s, background 0s ease;
}
.layout-wrap .section-content-right .main-content .main-content-inner {
  padding: 40px 48px;
  flex-grow: 1;
}
.layout-wrap
  .section-content-right
  .main-content
  .main-content-inner
  .main-content-wrap {
  width: 100%;
  margin: auto;
}
.layout-wrap .section-content-right .main-content .bottom-page {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 8px 24px 24px;
  gap: 10px;
  background: var(--White);
  box-shadow: 0px 4px 24px 2px rgba(20, 25, 38, 0.05);
}
.layout-wrap .section-content-right .main-content .bottom-page .body-text {
  color: rgba(48, 48, 48, 0.5019607843);
}
.layout-wrap .section-content-right .main-content .bottom-page a {
  color: var(--Secondary);
}
.layout-wrap .section-content-right .main-content .bottom-page a:hover {
  color: var(--Main-Dark);
}
.layout-wrap.full-width .section-menu-left {
  left: -256px;
}
.layout-wrap.full-width .section-menu-left > .box-logo {
  left: -256px;
  border-bottom: 0;
}
.layout-wrap.full-width .section-content-right .main-content {
  padding-left: 0;
}
.layout-wrap.full-width .section-content-right .header-dashboard {
  width: 100%;
  padding-left: 30px !important;
}
.layout-wrap.full-width
  .section-content-right
  .header-dashboard
  .button-show-hide {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.layout-wrap.full-width
  .section-content-right
  .header-dashboard
  .button-show-hide
  i {
  color: #0a0a0c;
}

.offcanvas {
  width: 530px;
  border: none;
  padding: 30px;
  gap: 24px;
}
.offcanvas.offcanvas-end {
  border-radius: 14px 0px 0px 14px;
}
.offcanvas.offcanvas-top {
  border-radius: 0px 0px 14px 14px;
  width: 100%;
}
.offcanvas.offcanvas-start {
  border-radius: 0px 14px 14px 0px;
  height: 100%;
}
.offcanvas.offcanvas-bottom {
  border-radius: 14px 14px 0px 0px;
  width: 100%;
}

.offcanvas-header {
  padding: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf1f5;
}
.offcanvas-header h6 {
  color: #111111;
}
.offcanvas-header .btn-close {
  font-size: 18px;
  color: #111111;
  opacity: 1;
  border: none;
  outline: 0;
}

.offcanvas-body {
  padding: 0;
}
.offcanvas-body::-webkit-scrollbar {
  width: 3px;
}
.offcanvas-body form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.offcanvas-body form > fieldset {
  padding-bottom: 20px;
  border-bottom: 1px solid #edf1f5;
}
.offcanvas-body form > fieldset .body-title {
  color: #0a0a0c;
}
.offcanvas-body form > fieldset:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}
.offcanvas-body form .radio-buttons {
  display: grid !important;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.offcanvas-body form .radio-buttons .item {
  width: 100%;
  max-width: 150px;
}
.offcanvas-body form .radio-buttons .item input {
  top: 10px;
  left: 10px;
}
.offcanvas-body form .radio-buttons .item label {
  width: 100%;
  justify-content: start;
  height: 44px;
  padding: 12px 0 12px 40px;
}
.offcanvas-body form > .tf-button {
  padding: 8px;
}
.offcanvas-body form.form-theme-color .radio-buttons .item {
  max-width: unset;
}
.offcanvas-body form.form-theme-color .radio-buttons .item input {
  width: 18px;
  height: 18px;
  font-size: 18px;
  padding: 0;
  border: none;
  background-color: #fff !important;
}
.offcanvas-body form.form-theme-color .radio-buttons .item input::before {
  width: 18px;
  height: 18px;
  font-size: 18px;
  border: none;
  border-radius: 0;
}
.offcanvas-body form.form-theme-color .radio-buttons .item label {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 14px;
  border: 1px solid #edf1f5;
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.wg-card {
  border-radius: 16px;
  padding: 19px 23px;
  border: 1px solid var(--LightGray);
}
.wg-card .icon {
  margin-bottom: 16px;
}
.wg-card .content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-top: 15px; */
}
.wg-card .content h6 {
  margin-bottom: 10px;
}
.wg-card .bottom {
  margin-top: 15px;
  padding-top: 9px;
  padding-left: 1px;
  border-top: 1px solid rgba(22, 19, 38, 0.15);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wg-card .bottom .infor-number {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 5px 18px;
}
.wg-card.style-1 {
  padding: 24px 24px 26px;
  border: 0;
  height: 190px;
}
.wg-card.style-1 .icon {
  margin-bottom: 28px;
  display: flex;
  gap: 15px;
}

.wg-box {
  border-radius: 16px;
  padding: 23px;
  border: 1px solid var(--LightGray);
}
.wg-box .title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}


.wg-box .title button {
  font-size: 16px;
  color: var(--Black);
}
.wg-box.style-1 {
  padding: 24px;
  border: 0;
}
.wg-box.p-32 {
  padding: 32px;
}
.wg-box.pt-32 {
  padding-top: 32px;
}
.wg-box.pr-32 {
  padding-right: 32px;
}
.wg-box.type-1 {
  padding: 32px 24px 30px;
  border: 0;
  gap: 32px;
}
.wg-box.type-1 .title {
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1019607843);
}

.my-card-item {
  position: relative;
  border-radius: 10px;
  padding: 21px 16px 26px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.my-card-item .number {
  margin-bottom: 54px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.my-card-item .bot {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.my-card-item .icon {
  position: absolute;
  bottom: 20px;
  right: 16px;
}

.bg-1 {
  background-image: url(../images/cart-item/my-cart-item-1.png);
}

.bg-2 {
  background-image: url(../images/cart-item/my-cart-item-2.png);
}

.bg-3 {
  background-image: url(../images/cart-item/my-cart-item-3.png);
}

.bg-4 {
  background-image: url(../images/cart-item/my-cart-item-4.png);
}

.card-details {
  gap: 40px;
  padding: 23px 23px 31px 23px;
}
.card-details > .title {
  border-bottom: 1px solid var(--LightGray);
  padding-bottom: 16px;
}
.card-details > .title .tf-button {
  padding: 10px 16px;
  gap: 4px;
}
.card-details .content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
.card-details .content .left {
  width: 37.88%;
}
.card-details .content .center {
  width: 20.8%;
}
.card-details .content .right {
  width: 27.69%;
}
.card-details .left li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-details .left li:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--LightGray);
}
.card-details .center .title {
  margin-bottom: 32px;
}
.card-details .center ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-details .right .wrap-donut {
  margin-bottom: 20px;
}
.card-details .right ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.card-details .right ul li:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--LightGray);
}
.card-details .right ul li .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 120px;
}

.wallet-activity-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.wallet-activity-item .icon {
  width: 11.57%;
}
.wallet-activity-item .icon img {
  border-radius: 50%;
}
.wallet-activity-item .content {
  width: 33.88%;
}
.wallet-activity-item .price {
  width: 36.157%;
}
.wallet-activity-item .status {
  width: 15.9%;
  padding: 6px 12px;
}

.list-wallet-activity {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 34px;
}

.wg-profile {
  position: relative;
  border-radius: 16px;
  padding: 62px 24px 25px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  overflow: hidden;
}
.wg-profile .image-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
}
.wg-profile .image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wg-profile .dropdown {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}
.wg-profile .dropdown button {
  font-size: 16px;
}
.wg-profile .content {
  position: relative;
  margin-bottom: 70px;
}
.wg-profile .avatar {
  width: 129px;
  height: 129px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--White);
  margin-bottom: 20px;
}
.wg-profile .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wg-profile .join-time {
  margin-bottom: 37px;
}
.wg-profile .connect {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tf-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 12px;
}
.tf-social a {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--Gray);
}
.tf-social a:hover {
  color: var(--Primary);
}

.tf-cart-checkbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
}
.tf-cart-checkbox .tf-checkbox-wrapp {
  place-items: center;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
}
.tf-cart-checkbox .tf-checkbox-wrapp input {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 4px !important;
  transition: 0.2s ease-in-out;
  opacity: 0;
}
.tf-cart-checkbox .tf-checkbox-wrapp input:checked + div {
  background-color: var(--Black);
}
.tf-cart-checkbox .tf-checkbox-wrapp input:checked + div i {
  transform: scale(1);
}
.tf-cart-checkbox .tf-checkbox-wrapp div {
  position: absolute;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: 0.25s ease-in-out;
  z-index: 5;
  border: 1px solid var(--Black);
  border-radius: 4px;
  pointer-events: none;
}
.tf-cart-checkbox .tf-checkbox-wrapp div i {
  font-size: 12px;
  transform: scale(0);
  color: var(--White);
}
.tf-cart-checkbox.check .wrap-content {
  display: block;
}
.tf-cart-checkbox.style-1 {
  gap: 4px;
}
.tf-cart-checkbox.style-1 .tf-checkbox-wrapp {
  min-width: 12px;
}
.tf-cart-checkbox.style-1 .tf-checkbox-wrapp input {
  width: 10px;
  height: 10px;
}
.tf-cart-checkbox.style-1 .tf-checkbox-wrapp input:checked + div {
  background-color: var(--Gray);
}
.tf-cart-checkbox.style-1 .tf-checkbox-wrapp input:checked + div i {
  color: var(--Primary);
  font-size: 6px;
  font-weight: 600;
}
.tf-cart-checkbox.style-1 .tf-checkbox-wrapp div {
  width: 10px;
  height: 10px;
  border: 1px solid var(--Gray);
}
.tf-cart-checkbox.style-2 input:checked + div {
  background-color: var(--White);
}
.tf-cart-checkbox.style-2 input:checked + div i {
  color: var(--Primary);
}
.tf-cart-checkbox.style-2 .tf-checkbox-wrapp div {
  border: 1px solid var(--White);
}
.tf-cart-checkbox.style-3 .tf-checkbox-wrapp input {
  width: 16px;
  height: 16px;
}
.tf-cart-checkbox.style-3 .tf-checkbox-wrapp div {
  width: 16px;
  height: 16px;
}

.topbar-search {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.topbar-search .form-search {
  max-width: 320px;
}
.topbar-search .form-search input {
  padding: 15px 10px 15px 36px !important;
  background-color: var(--Gainsboro);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  border: 0 !important;
}
.topbar-search .form-search .button-submit {
  left: 10px;
}
.topbar-search .right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-search .right .image-select {
  width: max-content !important;
}
.topbar-search .right .image-select .dropdown-toggle {
  padding: 10px 38px 10px 16px;
}

.graph-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.graph-wrap .graph-chart {
  width: 117px;
}
.graph-wrap .graph-chart .apexcharts-inner {
  margin-right: -10px;
}
.graph-wrap .graph-number {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.graph-wrap .apexcharts-grid-borders,
.graph-wrap .apexcharts-xaxis-tick {
  display: none;
}

.column-chart {
  min-height: unset !important;
  margin: -16px -8px 0 3px;
}

.box-about {
  height: calc(100% - 32px);
}
.box-about .about-wrap > .icon {
  margin-bottom: 12px;
}
.box-about .about-wrap .head {
  margin-bottom: 2px;
}
.box-about .about-wrap .sub {
  margin-bottom: 8px;
}
.box-about .about-wrap .number-exchange {
  margin-bottom: 16px;
  padding: 8px;
  background-color: var(--White);
  border-radius: 8px;
}
.box-about .about-wrap .desc {
  margin-bottom: 34px;
}
.box-about .about-wrap .btn-read-more {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px;
  color: var(--Green);
  border-radius: 4px;
  border: 1px solid var(--Green);
}
.box-about .about-wrap .btn-read-more i {
  font-size: 16px;
  transform: rotateY(180deg);
}
.box-about .about-wrap .btn-read-more:hover {
  background-color: var(--Green);
  color: var(--White);
}

#candlestick-3 .apexcharts-gridline {
  stroke: #393646;
}
#candlestick-3 .apexcharts-gridline > *:last-child {
  display: none;
}
#candlestick-3 .apexcharts-xaxis-tick {
  display: none;
}

.box-quick-trade {
  height: calc(100% - 32px);
}
.box-quick-trade .quick-trade-wrap .quick-trade-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.box-quick-trade .quick-trade-wrap .quick-trade-list .quick-trade-input {
  padding: 15px;
  border-radius: 8px;
  border: 1px solid var(--LightGray);
  text-align: end;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: var(--GrayDark);
}
.box-quick-trade .quick-trade-wrap .quick-trade-list .title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
}
.box-quick-trade .quick-trade-wrap .bottom-button {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 17px;
}
.box-quick-trade .quick-trade-wrap .bottom-button a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 6px;
}
.box-quick-trade .quick-trade-wrap .bottom-button a i {
  font-size: 16px;
}
.box-quick-trade .quick-trade-wrap .bottom-button .btn-buy {
  background-color: var(--Orchid);
  color: var(--Primary);
}
.box-quick-trade .quick-trade-wrap .bottom-button .btn-buy i {
  transform: rotateY(180deg);
}
.box-quick-trade .quick-trade-wrap .bottom-button .btn-buy:hover {
  color: var(--Orchid);
  background-color: var(--Primary);
}
.box-quick-trade .quick-trade-wrap .bottom-button .btn-sell {
  background-color: var(--YellowGreen);
  color: var(--Primary);
}
.box-quick-trade .quick-trade-wrap .bottom-button .btn-sell i {
  transform: rotate(180deg);
}
.box-quick-trade .quick-trade-wrap .bottom-button .btn-sell:hover {
  color: var(--YellowGreen);
  background-color: var(--Primary);
}

.grid-account-security {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0 24px;
}
.grid-account-security .left {
  width: 63.38%;
}
.grid-account-security .right {
  width: 34.5%;
}

.account-security-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background-color: var(--Gainsboro);
  border-radius: 12px;
  padding: 32px;
  gap: 32px;
}
.account-security-item .heading {
  width: 53.28%;
}
.account-security-item .content {
  width: 41.6%;
}
.account-security-item .content .content-item:not(:last-child) {
  margin-bottom: 69px;
}
.account-security-item .content-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.account-security-item .content-item .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 16px;
  border-radius: 4px;
  background-color: var(--White);
}
.account-security-item .content-item > a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  padding: 3px 0;
  border-radius: 6px;
  border: 1px solid var(--Gray);
  color: var(--Primary);
}
.account-security-item .content-item > a:hover {
  background-color: var(--Gray);
  color: var(--White);
}

.sign-in-wrap {
  min-height: 100vh;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

.sign-in-box {
  flex-grow: 1;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background-color: var(--White);
}
.sign-in-box .left {
  width: 50%;
  padding: 72.5px 24px;
  place-content: center;
}
.sign-in-box .left .content {
  max-width: 485px;
  margin-left: auto;
  margin-right: auto;
}
.sign-in-box .left .content .heading {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}
.sign-in-box .left .content .sub {
  text-align: center;
  margin-bottom: 32px;
}
.sign-in-box .left .sign-in-inner {
  padding: 36px;
  border-radius: 12px;
  background-color: var(--Gainsboro);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 32px;
  flex-direction: column;
}
.sign-in-box .left .sign-in-inner .btn-signin-with {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px;
  border-radius: 8px;
  border: 1px solid var(--Primary);
  color: var(--Black);
}
.sign-in-box .left .sign-in-inner .btn-signin-with:hover {
  background-color: var(--Black);
  color: var(--White);
}
.sign-in-box .right {
  width: 50%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.sign-in-box .right > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sign-in-box .right .text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
  right: 24px;
  text-align: center;
}
.sign-in-box .right .text img {
  margin-bottom: 48px;
}

.list-notifications,
.list-message {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.header-dashboard {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 256px);
  padding: 20px 48px 23px 48px;
  background: var(--White);
  z-index: 19;
  transition: all 0.3s, background 0s ease;
}
    .header-dashboard .wrap {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        width: 90%;
    }
.header-dashboard .wrap .header-left {
  width: 80%;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 25px;
}
.header-dashboard .wrap .header-left > a {
  display: none;
}
.header-dashboard .wrap .header-left .button-show-hide {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 20px;
  height: 20px;
  color: rgb(10, 10, 12);
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: none;
}
.header-dashboard .wrap .header-left .button-show-hide i {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-dashboard .wrap .header-left .button-show-hide:hover i {
  color: var(--Secondary);
}
.header-dashboard .wrap .header-left .box-content-search {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  border-radius: 14px;
  padding: 16px;
  background-color: var(--White);
  box-shadow: 0px 4px 24px 2px rgba(20, 25, 38, 0.05);
  height: 538px;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
}
.header-dashboard .wrap .header-left .box-content-search.active {
  top: 55px;
  opacity: 1;
  visibility: visible;
}
.header-dashboard .wrap .header-left .box-content-search::-webkit-scrollbar {
  width: 3px;
}
.header-dashboard .wrap .header-left .box-content-search .product-item .name a {
  color: var(--Main-Dark);
}
.header-dashboard .wrap .header-left .form-search {
  max-width: 307px;
}
.header-dashboard .wrap .header-grid {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 19px;
}
.header-dashboard .wrap .header-grid .header-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-dashboard .wrap .header-grid > .line1 {
  width: 1px;
  background: var(--LightGray);
  height: 24px;
}
.header-dashboard .wrap .header-grid > .setting {
  width: 24px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.header-dashboard .wrap .header-grid > .setting i {
  animation-name: spin;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.header-dashboard .wrap .header-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.header-dashboard .wrap .header-item i {
  font-size: 16px;
  color: var(--Primary);
}
.header-dashboard .wrap .header-item.country > .dropdown > .dropdown-menu.show {
  margin-top: 19px !important;
}

.tf-button {
  width: max-content;
  color: var(--Black);
  background-color: var(--White);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  gap: 6px;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-button .icon {
  font-size: 16px;
}
.tf-button .icon-send {
  transform: rotateY(180deg);
}
.tf-button:hover {
  background-color: var(--Black) !important;
  color: var(--White) !important;
}

    .tf-button.style-1:hover {
        background-color: #161326 !important;
        color: var(--Black);
    }
.tf-button.style-default {
  background-color: transparent;
  padding: 0;
}
.tf-button.style-default:hover {
  background-color: transparent !important;
  color: var(--Black) !important;
}
.tf-button.style-default.type-white {
  color: var(--White) !important;
}
.tf-button.style-default.type-white:hover {
  color: var(--YellowGreen) !important;
}
    .tf-button.style-2 {
        padding: 8px 16px;
        color: var(--Black);
        background-color: #e44b33;
        border-radius: 8px;
    }
        .tf-button.style-2:hover {
            background-color: var(--Black) !important;
            color: #e44b33;
        }
.tf-button.style-2 i {
  font-size: 20px;
}
.tf-button.style-3 {
  padding: 8px 16px;
  background-color: var(--Gainsboro);
  border-radius: 8px;
}
.tf-button.style-3 i {
  font-size: 20px;
}
    .tf-button.style-4 {
        gap: 4px;
        padding: 10px 16px;
        border-radius: 8px;
        color: white;
        background-color: var(--Primary);
    }
.tf-button.style-4:hover {
  background-color: var(--LightSkyBlue) !important;
}
    .tf-button.gap10 {
        gap: 10px;
        font-size: 17px;
    }

.tf-btn-default {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tf-btn-default:hover {
  color: var(--White);
}
.tf-btn-default i {
  font-size: 14px;
}
.tf-btn-default.style-1:hover {
  color: var(--Salmon);
}
.tf-btn-default.style-white {
  color: var(--White);
}
.tf-btn-default.style-white:hover {
  color: var(--Salmon);
}

form {
  position: relative;
}
form.form-search .button-submit {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}
form.form-search .button-submit button {
  padding: 0;
  border: 0;
  font-size: 16px;
  color: var(--Gray);
}
form.form-search .button-submit button i {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
form.form-search .button-submit button:hover i {
  color: var(--Secondary);
}
form.form-style-1 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
form.form-style-1 > * {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
form.form-style-1 > * > *:first-child {
  width: 100%;
  max-width: 300px;
}
form.form-style-1 .upload-image .item.up-load {
  min-height: 250px;
}
form.form-style-2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
form.form-style-2 > * {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  gap: 30px;
}
form.form-style-2 > * .left {
  width: 100%;
  max-width: 368px;
}
form textarea {
  height: 200px !important;
}
form textarea.h100 {
  height: 100px !important;
}
form .cols {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
form .cols-lg {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
form .cols-lg > * {
  max-width: 330px;
}
form.form-setting input {
  font-size: 14px;
}
form.form-setting input::placeholder {
  font-size: 14px;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 100%;
  padding: 13.5px 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  background-color: var(--White);
  border: 0;
  border-radius: 8px;
  color: var(--Black);
  overflow: hidden;
  margin-bottom: 0;
}
textarea::placeholder,
input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="datetime"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="date"]::placeholder,
input[type="month"]::placeholder,
input[type="time"]::placeholder,
input[type="week"]::placeholder,
input[type="number"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="color"]::placeholder {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: var(--Gray);
}
textarea.style-1,
input[type="text"].style-1,
input[type="password"].style-1,
input[type="datetime"].style-1,
input[type="datetime-local"].style-1,
input[type="date"].style-1,
input[type="month"].style-1,
input[type="time"].style-1,
input[type="week"].style-1,
input[type="number"].style-1,
input[type="email"].style-1,
input[type="url"].style-1,
input[type="search"].style-1,
input[type="tel"].style-1,
input[type="color"].style-1 {
  padding: 10.5px 36px;
  border: 1px solid var(--Gray);
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  background-color: transparent;
  border: 0;
  border-radius: 12px;
  color: var(--Main-Dark);
  overflow: hidden;
  display: inline-block;
  -webkit-appearance: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  color: var(--primary);
}

.password {
  position: relative;
}
.password .show-pass {
  position: absolute;
  bottom: 14px;
  right: 12px;
  font-size: 20px;
  height: 20px;
  display: flex;
  cursor: pointer;
}
.password .show-pass .view {
  display: none;
}
.password .show-pass.active .hide {
  display: none;
}
.password .show-pass.active .view {
  display: inline-block;
}

fieldset {
  margin-bottom: 0px;
  width: 100%;
}

.tf-select {
  position: relative;
}
.tf-select::after {
  position: absolute;
  font-family: "icomoon";
  content: "\e911";
  font-size: 16px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

select {
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  padding: 10px 36px 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--Gainsboro);
  margin-bottom: 0px;
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -ms-appearance: none;
}

.form-login input {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.section-menu-left {
  position: fixed;
  width: 256px;
  min-width: 256px;
  height: 100%;
  left: 0;
  z-index: 20;
  border-right: 0;
  padding-top: 81px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-menu-left::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--Primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-menu-left > .box-logo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  padding: 24px 31px 32px;
  width: 256px;
  background: var(--Primary);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 6;
}
.section-menu-left .section-menu-left-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-y: auto;
  position: relative;
  z-index: 5;
  flex-grow: 1;
}
.section-menu-left .section-menu-left-wrap::-webkit-scrollbar {
  width: 3px;
  width: 0px;
}
.section-menu-left .section-menu-left-wrap::-webkit-scrollbar-thumb {
  background: var(--Note);
  border-radius: 10px;
}
.section-menu-left .center {
  flex-grow: 1;
  padding: 11px 0;
  width: 100%;
}
.section-menu-left .center .center-heading {
  padding: 0 32px;
}
.section-menu-left .menu-item {
  position: relative;
  visibility: visible;
}
.section-menu-left .menu-item a {
  padding: 13px 14px 14px 30px;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px;
}
.section-menu-left .menu-item a .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 21px;
}
.section-menu-left .menu-item a .icon svg path {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-menu-left .menu-item a .icon i {
  font-size: 20px;
  color: var(--Gray);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-menu-left .menu-item a .text {
  white-space: nowrap;
  color: var(--Gray);
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-menu-left .menu-item a:hover::after,
.section-menu-left .menu-item a:hover i,
.section-menu-left .menu-item a:hover .text {
  color: var(--White) !important;
}
.section-menu-left .menu-item a:hover svg path {
  stroke: var(--White) !important;
}
.section-menu-left .menu-item a.active svg path {
  stroke: unset !important;
}
.section-menu-left .menu-item.has-children {
  position: relative;
  transition-delay: 0.3s;
}
.section-menu-left .menu-item.has-children::after {
  position: absolute;
  content: "\e943";
  top: 17.5px;
  right: 21px;
  color: var(--LightGray);
  font-size: 12px;
  font-family: "icomoon";
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.section-menu-left .menu-item.has-children:hover::after {
  color: var(--White);
}
.section-menu-left .menu-item.has-children.active > a svg path {
  fill: var(--White) !important;
}
.section-menu-left .menu-item.has-children.active > a i,
.section-menu-left .menu-item.has-children.active > a .text {
  color: var(--White);
}
.section-menu-left .menu-item.has-children.active::after {
  transform: rotate(90deg);
  color: var(--White) !important;
}
.section-menu-left .menu-item .sub-menu {
  display: none;
}
.section-menu-left .menu-item .sub-menu a {
  padding: 0;
  position: relative;
}
.section-menu-left .menu-item .sub-menu a .text {
  color: var(--Gray);
  font-size: 13px;
  line-height: 23px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-menu-left .menu-item:not(:last-child) {
  margin-bottom: 2px;
}
.section-menu-left .menu-item .menu-item-button.active {
  position: unset;
}
.section-menu-left .menu-item .menu-item-button.active::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--YellowGreen);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-menu-left .menu-item .menu-item-button.active .icon i,
.section-menu-left .menu-item .menu-item-button.active .text {
  color: var(--White);
}
.section-menu-left .sub-menu-item {
  position: relative;
  padding: 7px 0 7px 76px;
}
.section-menu-left .sub-menu-item.active a .text {
  color: var(--White);
}
.section-menu-left a {
  position: relative;
}
.section-menu-left .button-show-hide {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 28px;
  height: 28px;
  color: rgb(10, 10, 12);
  border-radius: 4px;
  background-color: rgb(246, 246, 246);
  cursor: pointer;
  transition: all 0.3s, background 0s ease;
}
.section-menu-left .button-show-hide i {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-menu-left .button-show-hide:hover i {
  color: var(--Secondary);
}
.section-menu-left .bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 21px;
}
.section-menu-left .bottom .content {
  padding-top: 32px;
}

.widget-tabs .widget-menu-tab {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 26px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf1f5;
  margin-bottom: 24px;
}
.widget-tabs .widget-menu-tab li {
  cursor: pointer;
  position: relative;
}
.widget-tabs .widget-menu-tab li.active * {
  color: var(--YellowGreen);
}
.widget-tabs .widget-menu-tab.style-1 {
  padding: 8px;
  border-radius: 14px;
  gap: 10px;
  background-color: #f8f8f8;
  border: 0;
}
.widget-tabs .widget-menu-tab.style-1 .item-title {
  border-radius: 14px;
  padding: 12px 20px;
  width: 100%;
  text-align: center;
}
.widget-tabs .widget-menu-tab.style-1 .item-title.active {
  background-color: #fff;
}
.widget-tabs .widget-menu-tab.style-1 .item-title.active .body-title {
  color: #2bc155;
}
.widget-tabs .widget-menu-tab.style-1 .item-title .body-title {
  color: #111111;
}
.widget-tabs.style-1 .widget-menu-tab {
  padding: 0;
  border: 0;
  margin: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 2px;
}
.widget-tabs.style-1 .widget-menu-tab .item-title {
  padding: 3px 14px 5px;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.widget-tabs.style-1 .widget-menu-tab .item-title:hover,
.widget-tabs.style-1 .widget-menu-tab .item-title.active {
  background-color: var(--Black);
  color: var(--White);
}

.popup-wrap {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  border: none;
  text-align: center;
  position: relative;
}
.popup-wrap .button-close-dropdown {
  position: absolute;
  z-index: 10;
  top: 20px;
  right: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  cursor: pointer;
}
.popup-wrap.type-header > .dropdown > .dropdown-toggle {
  cursor: pointer;
  padding: 0;
  overflow: unset;
  background: none;
  border: none;
}
.popup-wrap.type-header > .dropdown > .dropdown-toggle::after {
  display: none;
}
.popup-wrap.type-header > .dropdown > .dropdown-toggle:focus {
  outline: none;
  outline-offset: 0;
  box-shadow: none;
}
.popup-wrap > .dropdown > .dropdown-menu.show {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  padding: 16px;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  gap: 24px;
  border-radius: 14px;
  border: none;
  background: var(--White);
  box-shadow: 0px 4px 24px 2px rgba(20, 25, 38, 0.1);
}
.popup-wrap > .dropdown > .dropdown-menu.show h6 {
  padding-bottom: 14px;
  border-bottom: 1px solid #edf1f5;
  border-bottom: 1px solid var(--Stroke);
}
.popup-wrap.noti {
  position: relative;
}
.popup-wrap.noti > .dropdown .item,
.popup-wrap.noti > .dropdown .header-item {
  position: relative;
}
.popup-wrap.noti > .dropdown .item > .text-tiny,
.popup-wrap.noti > .dropdown .header-item > .text-tiny {
  position: absolute;
  z-index: 5;
  top: -4px;
  right: -5px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--Style);
  color: #fff !important;
}
.popup-wrap.noti > .dropdown .item > .text-tiny::after,
.popup-wrap.noti > .dropdown .header-item > .text-tiny::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: var(--Style);
  border-radius: 50%;
  z-index: -1;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.popup-wrap.noti > .dropdown .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(203, 213, 225, 0.3);
}
.popup-wrap.noti > .dropdown .item i {
  font-size: 20px;
  color: var(--Main-Dark);
}
.popup-wrap.noti .dropdown-menu.show {
  width: 344px;
  margin-top: 20px !important;
}
.popup-wrap.noti .dropdown-menu.show .noti-item .image {
  width: 52px;
  height: 52px;
}
.popup-wrap.apps {
  position: relative;
}
.popup-wrap.apps > .text-tiny {
  position: absolute;
  z-index: 5;
  top: -4px;
  right: -5px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--Style);
  color: var(--White);
}
.popup-wrap.apps .dropdown-menu.show {
  width: 368px;
  margin-top: 20px !important;
}
.popup-wrap.apps .dropdown-menu.show .list-apps {
  display: grid !important;
  gap: 10px 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.popup-wrap.apps .dropdown-menu.show .list-apps .item {
  border: 1px solid #edf1f5;
  border-radius: 14px;
  padding: 17.5px 0;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup-wrap.apps .dropdown-menu.show .list-apps .item a .text-tiny {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup-wrap.apps .dropdown-menu.show .list-apps .item a:hover .text-tiny {
  color: var(--Secondary);
}
.popup-wrap.user .dropdown-menu.show {
  width: 188px;
  margin-top: 19px !important;
}
.popup-wrap.user .dropdown-menu.show .user-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 20px;
  gap: 10px;
  border-radius: 12px;
}
.popup-wrap.user .dropdown-menu.show .user-item .icon i {
  font-size: 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup-wrap.user .dropdown-menu.show .user-item .body-title-2 {
  flex-grow: 1;
}
.popup-wrap.user .dropdown-menu.show .user-item .number {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 2px 8px;
  gap: 10px;
  border-radius: 50%;
  background: #f0fdf4;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
}
.popup-wrap.user .dropdown-menu.show .user-item:hover .body-title-2 {
  color: var(--Secondary);
}
.popup-wrap.user .dropdown-menu.show .user-item:hover .icon i {
  color: var(--Secondary);
}
.popup-wrap.message {
  position: relative;
}
.popup-wrap.message > .dropdown .header-item {
  position: relative;
}
.popup-wrap.message > .dropdown .header-item > .text-tiny {
  position: absolute;
  z-index: 5;
  top: -4px;
  right: -5px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #2275fc;
  color: #fff;
}
.popup-wrap.message > .dropdown .header-item > .text-tiny::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: #2275fc;
  border-radius: 50%;
  z-index: -1;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.popup-wrap.message .dropdown-menu.show {
  width: 344px;
  margin-top: 20px !important;
}

.notifications-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}
.notifications-item .image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
}
.notifications-item .image i {
  font-size: 20px;
}
.notifications-item.item-1 .image {
  background: #e9f2ff;
}
.notifications-item.item-1 .image i {
  color: var(--Secondary);
}
.notifications-item.item-2 .image {
  background: #f4e9ff;
}
.notifications-item.item-2 .image i {
  color: #c489ff;
}
.notifications-item.item-3 .image {
  background: #e7fbef;
}
.notifications-item.item-3 .image i {
  color: #22c55e;
}
.notifications-item.item-4 .image {
  background: #fff3ee;
}
.notifications-item.item-4 .image i {
  color: var(--Style);
}

.dropdown.default > .dropdown-toggle {
  font-size: 16px;
  color: var(--Black);
  padding: 0;
  overflow: hidden;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  height: unset;
}
.dropdown.default > .dropdown-toggle::after {
  display: none;
}
.dropdown.default > .dropdown-menu {
  margin-top: 15px !important;
  min-width: 120px;
  background-color: var(--White);
  border: 0;
  padding: 0;
  box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.1) inset,
    0px 8px 22px 0px rgba(4, 8, 16, 0.3);
}
.dropdown.default > .dropdown-menu a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 12px;
  padding: 8px 16px;
}
.dropdown.default > .dropdown-menu a:hover {
  color: var(--LimeGreen);
}
.dropdown.default.style-box > .dropdown-toggle {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 118px;
  padding: 9px 16px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid rgba(48, 48, 48, 0.1019607843);
  background: #f6f6f6;
  color: var(--Main-Dark);
  font-size: 12px;
  line-height: 14px;
}
.dropdown.default.style-box > .dropdown-toggle i {
  font-size: 14px;
}
.dropdown.default.style-fill > button {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: var(--Gainsboro);
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
}
.dropdown.default.style-fill > button i {
  font-size: 20px;
}
.dropdown.default.style-fill > button:hover {
  background-color: var(--Black) !important;
  color: var(--White);
}

.tab-sell-order {
  margin-bottom: -2px;
}
.tab-sell-order tr {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tab-sell-order thead tr {
  margin-bottom: 7px;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tab-sell-order thead tr th {
  padding: 0;
}
.tab-sell-order tbody tr {
  margin-left: -10px;
  margin-right: -10px;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tab-sell-order tbody tr:not(:last-child) {
  margin-bottom: 1px;
}
.tab-sell-order tbody tr:hover {
  background-color: var(--Primary);
}
.tab-sell-order tbody tr:hover td {
  color: var(--White);
}
.tab-sell-order tbody tr td {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 6px 10px;
}

.table-list-transaction {
  overflow-x: auto;
}
.table-list-transaction > * {
  min-width: 940px;
}
.table-list-transaction .list-transaction-head {
  padding: 5px 12px;
  border-radius: 8px;
  background-color: var(--Primary);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.table-list-transaction .list-transaction-head > * {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 6px;
  padding: 11px 16px;
}
.table-list-transaction .list-transaction-head > *:nth-child(1) {
  width: 181px;
  gap: 8px;
  padding: 9px 12px;
}
.table-list-transaction .list-transaction-head > *:nth-child(2) {
  width: 130px;
}
.table-list-transaction .list-transaction-head > *:nth-child(3) {
  width: 116px;
}
.table-list-transaction .list-transaction-head > *:nth-child(4) {
  width: 133px;
}
.table-list-transaction .list-transaction-head > *:nth-child(5) {
  width: 133px;
}
.table-list-transaction .list-transaction-head > *:nth-child(6) {
  width: 98px;
}
.table-list-transaction .list-transaction-head > *:nth-child(7) {
  width: 137px;
  justify-content: end;
}
    .table-list-transaction tbody tr {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        /*  justify-content: space-between;*/
        padding: 0 12px;
        gap: 82px;
    }
.table-list-transaction tbody tr:not(:last-child) {
  margin-bottom: 12px;
}
.table-list-transaction tbody tr td {
  flex-shrink: 0;
  height: 70px;
  padding: 0 10px 0 16px;
  place-content: center;
}
.table-list-transaction tbody tr td:last-child > div {
  margin-left: auto;
}
.table-list-transaction tbody tr td:nth-child(1) {
  width: 181px;
  padding: 0px 12px;
}
.table-list-transaction tbody tr td:nth-child(2) {
  width: 130px;
}
.table-list-transaction tbody tr td:nth-child(3) {
  width: 116px;
}
.table-list-transaction tbody tr td:nth-child(4) {
  width: 133px;
}
.table-list-transaction tbody tr td:nth-child(5) {
  width: 133px;
}
.table-list-transaction tbody tr td:nth-child(6) {
  width: 98px;
}
.table-list-transaction tbody tr td:nth-child(7) {
  width: 137px;
}

.tf-table-item {
  border-radius: 8px;
  background-color: var(--Gainsboro);
  position: relative;
}
.tf-table-item .wrap-image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tf-table-item .wrap-image .image {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.tf-table-item .wrap-image.style-1 .image {
  width: 20px;
  height: 20px;
}
.tf-table-item::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 0;
  left: 0;
  background-color: var(--Primary);
  border-radius: 99px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: auto;
  bottom: 0;
}
.tf-table-item.checked::before {
  height: 100%;
  top: 0;
  bottom: auto;
}

.table-list-crypto {
  overflow-x: auto;
}
.table-list-crypto > * {
  min-width: 930px;
}
.table-list-crypto .list-crypto-head {
  padding: 3px 12px 2px 12px;
  border-radius: 8px;
  background-color: var(--Primary);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.table-list-crypto .list-crypto-head > * {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 6px;
  padding: 11px 0px 11px 16px;
}
.table-list-crypto .list-crypto-head > *:nth-child(1) {
  width: 116px;
  gap: 8px;
  padding: 9px 12px;
}
.table-list-crypto .list-crypto-head > *:nth-child(2) {
  width: 105px;
}
.table-list-crypto .list-crypto-head > *:nth-child(3) {
  width: 101px;
}
.table-list-crypto .list-crypto-head > *:nth-child(4) {
  width: 134px;
}
.table-list-crypto .list-crypto-head > *:nth-child(5) {
  width: 146px;
}
.table-list-crypto .list-crypto-head > *:nth-child(6) {
  width: 286px;
  justify-content: end;
  padding-right: 12px;
}
.table-list-crypto tbody tr {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}
.table-list-crypto tbody tr:not(:last-child) {
  margin-bottom: 12px;
}
.table-list-crypto tbody tr td {
  flex-shrink: 0;
  height: 70px;
  padding: 0px 0 0 16px;
  place-content: center;
}
.table-list-crypto tbody tr td:last-child > div {
  margin-left: auto;
}
.table-list-crypto tbody tr td:nth-child(1) {
  width: 116px;
  padding: 0px 12px;
}
.table-list-crypto tbody tr td:nth-child(2) {
  width: 105px;
}
.table-list-crypto tbody tr td:nth-child(3) {
  width: 101px;
}
.table-list-crypto tbody tr td:nth-child(4) {
  width: 134px;
}
.table-list-crypto tbody tr td:nth-child(5) {
  width: 146px;
}
.table-list-crypto tbody tr td:nth-child(6) {
  width: 286px;
  padding-right: 12px;
}

.variant-picker-item .variant-picker-label {
  margin-bottom: 14px;
}
.variant-picker-item .variant-picker-values {
  display: flex;
  gap: 10px;
  align-items: center;
}
.variant-picker-item .variant-picker-values input {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}
.variant-picker-item .variant-picker-values input:checked + label {
  border-color: rgba(48, 48, 48, 0.5019607843);
}
.variant-picker-item .variant-picker-values input:checked + label.style-text {
  background-color: var(--Secondary);
  border: 0;
}
.variant-picker-item
  .variant-picker-values
  input:checked
  + label.style-text
  div {
  color: var(--White);
}
.variant-picker-item .variant-picker-values label {
  width: 36px;
  height: 36px;
  text-align: center;
  padding: 5px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 400;
  line-height: 22.4px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.variant-picker-item .variant-picker-values label:hover {
  border-color: rgba(48, 48, 48, 0.5019607843);
}
.variant-picker-item .variant-picker-values label .btn-checkbox {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  border: 0;
}
.variant-picker-item .variant-picker-values label .text {
  font-size: 16px;
  line-height: 19px;
}
.variant-picker-item .variant-picker-values label.style-text {
  min-width: 40px;
  width: 40px;
  height: 37px;
  border: 0;
  border-radius: 12px;
  background-color: var(--Surface-3);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-color-orange {
  background-color: #ff5200;
}

.bg-color-blue {
  background-color: #2377fc;
}

.bg-color-yellow {
  background-color: #fcc141;
}

.bg-color-white {
  background-color: var(--White);
}

.bg-color-black {
  background-color: var(--Main-Dark);
}

.dropdown.bootstrap-select.image-select {
  width: unset;
}
.dropdown.bootstrap-select.image-select > button {
  padding: 8px;
  background-color: transparent;
  border: 0;
  outline: none !important;
  border-radius: 6px;
  background-color: rgba(22, 19, 37, 0.03);
}
.dropdown.bootstrap-select.image-select > button::after {
  border: 0;
  position: absolute;
  right: 8px;
  content: "\e911";
  font-family: "icomoon";
  font-size: 16px;
  margin: 0;
}
.dropdown.bootstrap-select.image-select > button:hover {
  color: rgba(0, 0, 0, 0.8);
}
.dropdown.bootstrap-select.image-select > button .filter-option-inner-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}
.dropdown.bootstrap-select.image-select
  > button
  .filter-option-inner-inner
  img {
  width: 16px;
  height: 16px;
}
.dropdown.bootstrap-select.image-select.image-w-20 > button::after {
  right: 14px;
}
.dropdown.bootstrap-select.image-select.image-w-20 > button img {
  width: 20px !important;
  height: 20px !important;
}
.dropdown.bootstrap-select.image-select > .dropdown-menu {
  overflow: unset !important;
  padding: 8px 0px;
  border-radius: 6px;
  border: 0;
  background-color: var(--White);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 18px 0px;
}
.dropdown.bootstrap-select.image-select > .dropdown-menu ul.dropdown-menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.dropdown.bootstrap-select.image-select > .dropdown-menu ul.dropdown-menu a {
  border-radius: 3px;
}
.dropdown.bootstrap-select.image-select
  > .dropdown-menu
  ul.dropdown-menu
  a:active,
.dropdown.bootstrap-select.image-select
  > .dropdown-menu
  ul.dropdown-menu
  a.active {
  color: var(--Primary) !important;
  background-color: unset !important;
}
.dropdown.bootstrap-select.image-select
  > .dropdown-menu
  ul.dropdown-menu
  .text {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}
.dropdown.bootstrap-select.image-select
  > .dropdown-menu
  ul.dropdown-menu
  .text
  img {
  width: 16px;
  height: 16px;
}
.dropdown.bootstrap-select.image-select
  > .dropdown-menu
  ul.dropdown-menu
  > li
  > a:hover {
  color: rgba(0, 0, 0, 0.8);
  background-color: unset;
}
.dropdown.bootstrap-select.image-select > .dropdown-menu::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: var(--white);
  top: 0;
  left: 50%;
  z-index: 2;
}
.dropdown.bootstrap-select.image-select
  > .dropdown-menu[data-popper-placement="top-start"]::after {
  display: none;
}
.dropdown.bootstrap-select.image-select
  > .dropdown-menu[data-popper-placement="top-start"]::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  transform: translate(-50%, 50%) rotate(45deg);
  background-color: var(--white);
  bottom: 0%;
  left: 50%;
  z-index: 2;
}
.dropdown.bootstrap-select.image-select.type-currencies
  > button
  .filter-option
  .filter-option-inner {
  width: 50px;
}
.dropdown.bootstrap-select.image-select.type-currencies > .dropdown-menu {
  width: 300px;
  margin-left: calc(50% - 150px) !important;
}
.dropdown.bootstrap-select.image-select.type-languages > .dropdown-menu {
  width: 96px;
  margin-left: calc(50% - 48px) !important;
}
.dropdown.bootstrap-select.image-select.style-white > button {
  border: 1px solid var(--White);
}
.dropdown.bootstrap-select.image-select.style-white > button::after {
  color: var(--White);
}
.dropdown.bootstrap-select.image-select.style-white
  > button
  .filter-option
  .filter-option-inner {
  color: var(--White);
}
.dropdown.bootstrap-select.image-select.type-1 {
  width: max-content;
}
.dropdown.bootstrap-select.image-select.type-1 > button {
  padding: 9px 35px 9px 15px;
  background-color: transparent;
}
.dropdown.bootstrap-select.image-select.type-2 {
  width: max-content;
}
.dropdown.bootstrap-select.image-select.type-2 > button {
  border: 1px solid var(--LightGray);
  padding: 7px 35px 7px 15px;
  background-color: transparent;
}
.dropdown.bootstrap-select.image-select.type-2 > button::after {
  color: var(--Primary);
}
.dropdown.bootstrap-select.image-select.type-2
  > button
  .filter-option
  .filter-option-inner {
  color: var(--Primary);
}

.layout-wrap {
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.layout-wrap.menu-position-scrollable {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.layout-wrap.menu-position-scrollable.full-width {
  margin-left: -256px;
}
.layout-wrap.menu-position-scrollable .section-menu-left {
  position: relative;
  height: unset;
  border: 0;
}
.layout-wrap.menu-position-scrollable .section-menu-left .box-logo {
  background-color: var(--Primary);
}
.layout-wrap.menu-position-scrollable .section-content-right .main-content {
  padding-left: 0;
}
.layout-wrap.header-position-scrollable .header-dashboard {
  position: relative;
  width: 100%;
  padding-left: 304px;
}
.layout-wrap.header-position-scrollable .main-content {
  padding-top: 0;
}
.layout-wrap.header-position-scrollable.menu-position-scrollable.full-width {
  margin-left: -256px;
}
.layout-wrap.header-position-scrollable.menu-position-scrollable
  .header-dashboard {
  padding-left: 48px;
}
.layout-wrap.layout-width-boxed {
  max-width: 1440px;
  margin: auto;
}
.layout-wrap.layout-width-boxed .tf-container {
  max-width: 1112px;
}
.layout-wrap.layout-width-boxed .section-menu-left {
  left: calc((100vw - 1440px) / 2 - 8px);
}
.layout-wrap.layout-width-boxed .section-menu-left > .box-logo {
  left: calc((100vw - 1440px) / 2 - 8px);
}
.layout-wrap.layout-width-boxed .header-dashboard {
  max-width: 1440px;
  width: 100%;
  right: 50%;
  -webkit-transform: translate(50%, 0);
  -moz-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
  -o-transform: translate(50%, 0);
  transform: translate(50%, 0);
  padding-left: 304px;
}
.layout-wrap.layout-width-boxed .main-content-inner {
  padding-right: 0;
}
.layout-wrap.layout-width-boxed.full-width .section-menu-left {
  left: calc((100vw - 1440px) / 2 - 288px);
  opacity: 0;
  visibility: hidden;
}
.layout-wrap.layout-width-boxed.full-width .box-logo {
  left: calc((100vw - 1440px) / 2 - 288px);
  opacity: 0;
  visibility: hidden;
}
.layout-wrap.layout-width-boxed.full-width .main-content-inner {
  padding-left: 0;
}
.layout-wrap.layout-width-boxed.header-position-scrollable.menu-position-scrollable
  .section-menu-left {
  left: 0;
}
.layout-wrap.layout-width-boxed.header-position-scrollable.menu-position-scrollable.full-width {
  margin: auto;
}
.layout-wrap.layout-width-boxed.header-position-scrollable.menu-position-scrollable.full-width
  .section-menu-left {
  left: calc((100vw - 1440px) / 2 - 288px);
}
.layout-wrap.layout-width-boxed.header-position-scrollable.menu-position-scrollable.full-width
  .section-menu-left
  > .box-logo {
  left: calc((100vw - 1440px) / 2 - 288px);
}
.layout-wrap.layout-width-boxed.header-position-scrollable.menu-position-scrollable.full-width
  .section-content-right {
  margin-left: -256px;
}
.layout-wrap.layout-width-boxed.menu-position-scrollable .section-menu-left {
  left: 0;
}
.layout-wrap.layout-width-boxed.menu-position-scrollable.full-width {
  margin: auto;
}
.layout-wrap.layout-width-boxed.menu-position-scrollable.full-width
  .section-menu-left {
  left: calc((100vw - 1440px) / 2 - 288px);
}
.layout-wrap.layout-width-boxed.menu-position-scrollable.full-width
  .section-menu-left
  > .box-logo {
  left: calc((100vw - 1440px) / 2 - 288px);
}
.layout-wrap.layout-width-boxed.menu-position-scrollable.full-width
  .section-content-right {
  margin-left: -256px;
}
.layout-wrap.layout-width-boxed.menu-style-icon .header-dashboard {
  padding-left: 122px;
  width: 100%;
}
.layout-wrap.menu-style-icon .section-menu-left {
  width: 75px;
  min-width: 75px;
}
.layout-wrap.menu-style-icon .section-menu-left .box-logo {
  width: 75px;
  padding: 15px 14px;
}
.layout-wrap.menu-style-icon .section-menu-left .box-logo a {
  overflow: hidden;
}
.layout-wrap.menu-style-icon .section-menu-left .box-logo a img {
  min-width: 154px;
  width: 154px;
}
.layout-wrap.menu-style-icon .section-menu-left .box-logo .button-show-hide {
  display: none;
}
.layout-wrap.menu-style-icon .section-menu-left .bottom,
.layout-wrap.menu-style-icon .section-menu-left .center-heading {
  display: none;
}
.layout-wrap.menu-style-icon .section-menu-left .menu-item > a {
  padding: 13px 14px 14px 24px;
}
.layout-wrap.menu-style-icon .section-menu-left .menu-item > a > .text {
  display: none;
}
.layout-wrap.menu-style-icon .section-menu-left .menu-item::after {
  display: none;
}
.layout-wrap.menu-style-icon
  .section-menu-left
  .menu-item.has-children.active
  .sub-menu {
  display: none !important;
}
.layout-wrap.menu-style-icon .section-menu-left:hover {
  width: 256px;
  min-width: 256px;
}
.layout-wrap.menu-style-icon .section-menu-left:hover .box-logo {
  width: 256px;
}
.layout-wrap.menu-style-icon .section-menu-left:hover .menu-item > a > .text {
  display: block;
}
.layout-wrap.menu-style-icon .section-menu-left:hover .menu-item > .sub-menu {
  display: none;
}
.layout-wrap.menu-style-icon .section-menu-left:hover .menu-item::after {
  display: unset;
}
.layout-wrap.menu-style-icon
  .section-menu-left:hover
  .menu-item.active
  > .sub-menu {
  display: block !important;
}
.layout-wrap.menu-style-icon .header-dashboard {
  width: calc(100% - 75px);
}
.layout-wrap.menu-style-icon .main-content {
  padding-left: 75px;
}
.layout-wrap.menu-style-icon.menu-position-scrollable .main-content {
  padding-left: 0px;
}
.layout-wrap.menu-style-icon.header-position-scrollable .header-dashboard {
  width: 100%;
  padding-left: 122px;
}
.layout-wrap.menu-style-icon.header-position-scrollable.menu-position-scrollable
  .header-dashboard {
  padding-left: 30px;
}
.layout-wrap.menu-style-icon-default .header-dashboard {
  width: calc(100% - 75px);
}
.layout-wrap.menu-style-icon-default .main-content {
  padding-left: 75px;
}
.layout-wrap.menu-style-icon-default .section-menu-left .bottom,
.layout-wrap.menu-style-icon-default .section-menu-left .center-heading {
  display: none;
}
.layout-wrap.menu-style-icon-default .section-menu-left .menu-item > a {
  padding: 13px 14px 14px 24px;
}
.layout-wrap.loader-off #preload {
  display: none;
}

@media (min-width: 1201px) {
  .layout-wrap.menu-style-icon-default.full-width .section-menu-left {
    left: 0;
  }
  .layout-wrap.menu-style-icon-default.full-width
    .section-menu-left
    > .box-logo {
    left: 0;
  }
  .layout-wrap.menu-style-icon-default .section-menu-left {
    width: 75px;
    min-width: 75px;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }
  .layout-wrap.menu-style-icon-default .section-menu-left::before {
    width: 75px;
  }
  .layout-wrap.menu-style-icon-default .section-menu-left > .box-logo {
    width: 75px;
    padding: 15px 14px;
  }
  .layout-wrap.menu-style-icon-default .section-menu-left > .box-logo a {
    overflow: hidden;
  }
  .layout-wrap.menu-style-icon-default .section-menu-left > .box-logo a img {
    min-width: 154px;
    width: 154px;
  }
  .layout-wrap.menu-style-icon-default
    .section-menu-left
    > .box-logo
    .button-show-hide {
    display: none;
  }
  .layout-wrap.menu-style-icon-default .section-menu-left:hover {
    width: 256px;
    background-color: transparent;
    box-shadow: none;
    align-items: start;
  }
  .layout-wrap.menu-style-icon-default .section-menu-left:hover .center {
    background-color: var(--Primary);
    width: 75px;
    flex-grow: 1;
  }
  .layout-wrap.menu-style-icon-default .section-menu-left .center-item {
    position: relative;
  }
  .layout-wrap.menu-style-icon-default
    .section-menu-left
    .menu-item
    > a
    > .text {
    display: none;
  }
  .layout-wrap.menu-style-icon-default .section-menu-left .menu-item::after {
    display: none;
  }
  .layout-wrap.menu-style-icon-default
    .section-menu-left
    .menu-item.has-children
    .sub-menu {
    width: 181px;
    position: absolute;
    left: 100%;
    top: 0px;
    display: block !important;
    background-color: var(--Primary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    height: unset !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    padding-right: 0px !important;
    border: 1px solid rgba(210, 221, 220, 0.1803921569);
  }
  .layout-wrap.menu-style-icon-default
    .section-menu-left
    .menu-item.has-children
    .sub-menu
    .sub-menu-item {
    padding: 0;
  }
  .layout-wrap.menu-style-icon-default
    .section-menu-left
    .menu-item.has-children
    .sub-menu
    .sub-menu-item
    a {
    padding: 12.5px 15px 12.5px 15px;
  }
  .layout-wrap.menu-style-icon-default
    .section-menu-left
    .menu-item.has-children
    .sub-menu
    .sub-menu-item
    .text,
  .layout-wrap.menu-style-icon-default
    .section-menu-left
    .menu-item.has-children
    .sub-menu
    .sub-menu-item
    a {
    color: var(--Gray);
  }
  .layout-wrap.menu-style-icon-default
    .section-menu-left
    .menu-item.has-children
    .sub-menu
    .sub-menu-item:hover
    a,
  .layout-wrap.menu-style-icon-default
    .section-menu-left
    .menu-item.has-children
    .sub-menu
    .sub-menu-item.active
    a {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .layout-wrap.menu-style-icon-default
    .section-menu-left
    .menu-item.has-children
    .sub-menu
    .sub-menu-item:hover
    .text,
  .layout-wrap.menu-style-icon-default
    .section-menu-left
    .menu-item.has-children
    .sub-menu
    .sub-menu-item.active
    .text {
    color: var(--White) !important;
  }
  .layout-wrap.menu-style-icon-default
    .section-menu-left
    .menu-item.has-children:hover
    > a {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .layout-wrap.menu-style-icon-default
    .section-menu-left
    .menu-item.has-children:hover
    .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  .layout-wrap.menu-style-icon-default.layout-width-boxed .header-dashboard {
    padding-left: 122px;
  }
  .layout-wrap.menu-style-icon-default.layout-width-boxed.menu-position-scrollable
    .main-content {
    padding-left: 0px;
  }
  .layout-wrap.menu-style-icon-default.layout-width-boxed.menu-position-scrollable
    .section-menu-left
    > .box-logo {
    left: calc((100vw - 1454px) / 2 - 1px);
  }
  .layout-wrap.menu-style-icon-default.layout-width-boxed.menu-position-scrollable.header-position-scrollable
    .header-dashboard {
    width: 100%;
    padding-left: 30px;
  }
  .layout-wrap.menu-style-icon-default.layout-width-boxed.header-position-scrollable
    .header-dashboard {
    width: 100%;
  }
  .layout-wrap.menu-style-icon-default.header-position-scrollable
    .header-dashboard {
    width: 100%;
    padding-left: 122px;
  }
  .layout-wrap.menu-style-icon-default.menu-position-scrollable .main-content {
    padding-left: 0;
  }
  .layout-wrap.menu-style-icon-default.menu-position-scrollable
    .section-menu-left:hover {
    margin-right: -181px;
  }
  .layout-wrap.menu-style-icon-default.menu-position-scrollable.header-position-scrollable
    .header-dashboard {
    padding-left: 30px;
  }
}
@media (max-width: 1440px) {
  .layout-wrap.menu-style-icon-default.layout-width-boxed .header-dashboard {
    width: 100%;
  }
  .layout-wrap.layout-width-boxed .section-menu-left {
    left: 0;
  }
  .layout-wrap.layout-width-boxed .section-menu-left > .box-logo {
    left: 0;
  }
  .layout-wrap.layout-width-boxed .main-content-inner {
    padding-left: 30px;
    padding-right: 13px;
  }
  .layout-wrap.layout-width-boxed.full-width .main-content-inner {
    padding-left: 30px;
  }
  .layout-wrap.layout-width-boxed.menu-position-scrollable > .box-logo {
    left: 0;
  }
}
@media (max-width: 1200px) {
  .layout-wrap.header-position-scrollable.full-width .header-dashboard {
    padding-left: 15px !important;
  }
  .layout-wrap.header-position-scrollable.menu-position-scrollable.full-width
    .section-menu-left {
    left: 256px;
  }
  .layout-wrap.menu-position-scrollable {
    margin-left: -256px;
  }
  .layout-wrap.menu-position-scrollable.full-width .section-menu-left {
    left: 256px;
  }
  .layout-wrap.menu-position-scrollable.full-width .header-dashboard {
    padding-left: 15px !important;
  }
  .layout-wrap.menu-style-icon.full-width .header-dashboard {
    padding-left: 15px !important;
  }
  .layout-wrap.menu-style-icon .section-menu-left {
    width: 256px;
    min-width: 256px;
  }
  .layout-wrap.menu-style-icon .section-menu-left .box-logo {
    width: 256px;
  }
  .layout-wrap.menu-style-icon .section-menu-left .box-logo .button-show-hide,
  .layout-wrap.menu-style-icon .section-menu-left .box-logo .logo-full {
    display: block;
  }
  .layout-wrap.menu-style-icon .section-menu-left .box-logo .logo-icon {
    display: none;
  }
  .layout-wrap.menu-style-icon .section-menu-left .menu-item > a {
    justify-content: start;
  }
  .layout-wrap.menu-style-icon .section-menu-left .menu-item > a > .text {
    display: block;
  }
  .layout-wrap.menu-style-icon .section-menu-left .menu-item > .sub-menu {
    display: none;
  }
  .layout-wrap.menu-style-icon .section-menu-left .menu-item::after {
    display: unset;
  }
  .layout-wrap.menu-style-icon
    .section-menu-left
    .menu-item.active
    > .sub-menu {
    display: block !important;
  }
  .layout-wrap.menu-style-icon.menu-position-scrollable {
    margin-left: 0;
  }
  .layout-wrap.menu-style-icon.menu-position-scrollable .section-menu-left {
    position: fixed;
  }
  .layout-wrap.menu-style-icon.menu-position-scrollable.full-width
    .section-menu-left {
    left: 0;
  }
  .layout-wrap.menu-style-icon.menu-position-scrollable.header-position-scrollable {
    margin-left: 0;
  }
  .layout-wrap.layout-width-boxed .section-menu-left {
    left: -100%;
  }
  .layout-wrap.layout-width-boxed .section-menu-left .box-logo {
    left: -100%;
  }
  .layout-wrap.layout-width-boxed .section-content-right .header-dashboard {
    right: 0;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .layout-wrap.layout-width-boxed
    .section-content-right
    .main-content
    .main-content-inner {
    padding-left: 15px;
  }
  .layout-wrap.layout-width-boxed.full-width .section-menu-left {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .layout-wrap.layout-width-boxed.full-width .box-logo {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .layout-wrap.layout-width-boxed.full-width .header-dashboard {
    padding-left: 15px !important;
  }
  .layout-wrap.layout-width-boxed.full-width .main-content .main-content-inner {
    padding-left: 15px;
  }
  .layout-wrap.layout-width-boxed.header-position-scrollable.menu-position-scrollable {
    margin-left: -256px;
  }
  .layout-wrap.layout-width-boxed.header-position-scrollable.menu-position-scrollable
    .section-menu-left {
    left: -256px;
  }
  .layout-wrap.layout-width-boxed.header-position-scrollable.menu-position-scrollable
    .section-menu-left
    .box-logo {
    left: -256px;
  }
  .layout-wrap.layout-width-boxed.header-position-scrollable.menu-position-scrollable.full-width {
    margin-left: 0;
  }
  .layout-wrap.layout-width-boxed.header-position-scrollable.menu-position-scrollable.full-width
    .section-menu-left {
    left: 0;
  }
  .layout-wrap.layout-width-boxed.header-position-scrollable.menu-position-scrollable.full-width
    .section-menu-left
    .box-logo {
    left: 0;
  }
  .layout-wrap.layout-width-boxed.menu-position-scrollable {
    margin-left: 0;
  }
  .layout-wrap.layout-width-boxed.menu-position-scrollable .section-menu-left {
    left: -100%;
  }
  .layout-wrap.layout-width-boxed.menu-position-scrollable
    .section-menu-left
    > .box-logo {
    left: -100%;
  }
  .layout-wrap.layout-width-boxed.menu-position-scrollable
    .section-content-right
    .main-content {
    margin-left: -256px;
  }
  .layout-wrap.layout-width-boxed.menu-position-scrollable.full-width
    .section-menu-left {
    left: 0;
  }
  .layout-wrap.layout-width-boxed.menu-position-scrollable.full-width
    .section-menu-left
    > .box-logo {
    left: 0;
  }
  .layout-wrap.layout-width-boxed.menu-position-scrollable.full-width
    .section-content-right
    .main-content {
    margin-left: 0;
  }
  .layout-wrap.layout-width-boxed.menu-style-icon.menu-position-scrollable
    .main-content {
    margin-left: 0;
  }
  .layout-wrap.layout-width-boxed.menu-style-icon.menu-position-scrollable.full-width
    .section-content-right {
    margin-left: 0;
  }
  .layout-wrap.layout-width-boxed.menu-style-icon.menu-position-scrollable.header-position-scrollable {
    margin-left: 0;
  }
  .layout-wrap.menu-style-icon-default.layout-width-boxed.menu-position-scrollable.header-position-scrollable {
    margin-left: 0;
  }
  .layout-wrap.menu-style-icon-default.layout-width-boxed.menu-position-scrollable.header-position-scrollable
    .header-dashboard {
    position: unset;
    width: unset !important;
    margin-left: -256px;
  }
}
@media (max-width: 991px) {
  .menu-position {
    display: none;
  }
}
[data-menu-background="colors-menu-fff"] .section-menu-left::before {
  background: #fff !important;
  opacity: 1;
}
[data-menu-background="colors-menu-fff"] .section-menu-left .box-logo {
  background-color: #fff !important;
}
[data-menu-background="colors-menu-fff"]
  .section-menu-left
  .center
  .menu-item
  a
  .icon
  i {
  color: #a4a4a9 !important;
}
[data-menu-background="colors-menu-fff"]
  .section-menu-left
  .center
  .menu-item
  a
  .icon
  svg
  path {
  stroke: #a4a4a9 !important;
}
[data-menu-background="colors-menu-fff"]
  .section-menu-left
  .center
  .menu-item
  a
  .text {
  color: #a4a4a9;
}
[data-menu-background="colors-menu-fff"]
  .section-menu-left
  .center
  .menu-item
  a:hover
  .icon
  i {
  color: #000 !important;
}
[data-menu-background="colors-menu-fff"]
  .section-menu-left
  .center
  .menu-item
  a:hover
  .icon
  svg
  path {
  stroke: #000 !important;
}
[data-menu-background="colors-menu-fff"]
  .section-menu-left
  .center
  .menu-item
  a:hover
  .text {
  color: #000 !important;
}
[data-menu-background="colors-menu-fff"]
  .section-menu-left
  .center
  .menu-item.has-children
  .sub-menu-item.active
  a
  .text {
  color: #161326;
}
[data-menu-background="colors-menu-fff"]
  .section-menu-left
  .center
  .menu-item.has-children::after {
  color: #161326 !important;
}

[data-menu-background="colors-menu-1E293B"] .section-menu-left::before {
  background: #1e293b !important;
  opacity: 1;
}
[data-menu-background="colors-menu-1E293B"] .section-menu-left .box-logo {
  background: #1e293b !important;
}

[data-menu-background="colors-menu-161326"] .section-menu-left::before {
  background: #161326 !important;
  opacity: 1;
}

[data-menu-background="colors-menu-3A3043"] .section-menu-left::before {
  background: #3a3043 !important;
  opacity: 1;
}
[data-menu-background="colors-menu-3A3043"] .section-menu-left .box-logo {
  background-color: #3a3043 !important;
}

[data-colors-header="colors-header-fff"]
  .section-content-right
  .header-dashboard {
  background-color: #fff;
}

[data-colors-header="colors-header-1E293B"]
  .section-content-right
  .header-dashboard {
  background-color: #1e293b;
}
[data-colors-header="colors-header-1E293B"]
  .section-content-right
  .header-dashboard
  .wg-user
  .name,
[data-colors-header="colors-header-1E293B"]
  .section-content-right
  .header-dashboard
  h6 {
  color: var(--White);
}
[data-colors-header="colors-header-1E293B"]
  .section-content-right
  .header-dashboard
  .form-search
  input {
  color: #fff;
  background-color: #1e293b;
}
[data-colors-header="colors-header-1E293B"]
  .section-content-right
  .header-dashboard
  .form-search
  input::placeholder {
  color: #fff;
}
[data-colors-header="colors-header-1E293B"]
  .section-content-right
  .header-dashboard
  .form-search
  .button-submit
  i {
  color: #fff;
}
[data-colors-header="colors-header-1E293B"]
  .section-content-right
  .header-dashboard
  .header-item {
  background-color: rgba(203, 213, 225, 0.1019607843);
}
[data-colors-header="colors-header-1E293B"]
  .section-content-right
  .header-dashboard
  .header-item
  svg
  path {
  fill: #fff;
}
[data-colors-header="colors-header-1E293B"]
  .section-content-right
  .header-dashboard
  .header-item
  i {
  color: #fff;
}
[data-colors-header="colors-header-1E293B"]
  .section-content-right
  .header-dashboard
  .setting
  i {
  color: #fff;
}
[data-colors-header="colors-header-1E293B"]
  .section-content-right
  .header-dashboard
  .header-user
  .body-text,
[data-colors-header="colors-header-1E293B"]
  .section-content-right
  .header-dashboard
  .header-user
  .text-tiny,
[data-colors-header="colors-header-1E293B"]
  .section-content-right
  .header-dashboard
  .header-user
  .body-title {
  color: #fff !important;
}

[data-colors-header="colors-header-161326"]
  .section-content-right
  .header-dashboard {
  background-color: #161326;
}
[data-colors-header="colors-header-161326"]
  .section-content-right
  .header-dashboard
  .wg-user
  .name,
[data-colors-header="colors-header-161326"]
  .section-content-right
  .header-dashboard
  h6 {
  color: var(--White);
}
[data-colors-header="colors-header-161326"]
  .section-content-right
  .header-dashboard
  .form-search
  input {
  color: #fff;
  background-color: #161326;
}
[data-colors-header="colors-header-161326"]
  .section-content-right
  .header-dashboard
  .form-search
  input::placeholder {
  color: #fff;
}
[data-colors-header="colors-header-161326"]
  .section-content-right
  .header-dashboard
  .form-search
  .button-submit
  i {
  color: #fff;
}
[data-colors-header="colors-header-161326"]
  .section-content-right
  .header-dashboard
  .header-item {
  background-color: rgba(203, 213, 225, 0.1019607843);
}
[data-colors-header="colors-header-161326"]
  .section-content-right
  .header-dashboard
  .header-item
  svg
  path {
  fill: #fff;
}
[data-colors-header="colors-header-161326"]
  .section-content-right
  .header-dashboard
  .header-item
  i {
  color: #fff;
}
[data-colors-header="colors-header-161326"]
  .section-content-right
  .header-dashboard
  .setting
  i {
  color: #fff;
}
[data-colors-header="colors-header-161326"]
  .section-content-right
  .header-dashboard
  .header-user
  .body-text,
[data-colors-header="colors-header-161326"]
  .section-content-right
  .header-dashboard
  .header-user
  .text-tiny,
[data-colors-header="colors-header-161326"]
  .section-content-right
  .header-dashboard
  .header-user
  .body-title {
  color: #fff !important;
}

[data-colors-header="colors-header-3A3043"]
  .section-content-right
  .header-dashboard {
  background-color: #3a3043;
}
[data-colors-header="colors-header-3A3043"]
  .section-content-right
  .header-dashboard
  .wg-user
  .name,
[data-colors-header="colors-header-3A3043"]
  .section-content-right
  .header-dashboard
  h6 {
  color: var(--White);
}
[data-colors-header="colors-header-3A3043"]
  .section-content-right
  .header-dashboard
  .form-search
  input {
  color: #fff;
  background-color: #3a3043;
}
[data-colors-header="colors-header-3A3043"]
  .section-content-right
  .header-dashboard
  .form-search
  input::placeholder {
  color: #fff;
}
[data-colors-header="colors-header-3A3043"]
  .section-content-right
  .header-dashboard
  .form-search
  .button-submit
  i {
  color: #fff;
}
[data-colors-header="colors-header-3A3043"]
  .section-content-right
  .header-dashboard
  .header-item {
  background-color: rgba(203, 213, 225, 0.1019607843);
}
[data-colors-header="colors-header-3A3043"]
  .section-content-right
  .header-dashboard
  .header-item
  svg
  path {
  fill: #fff;
}
[data-colors-header="colors-header-3A3043"]
  .section-content-right
  .header-dashboard
  .header-item
  i {
  color: #fff;
}
[data-colors-header="colors-header-3A3043"]
  .section-content-right
  .header-dashboard
  .setting
  i {
  color: #fff;
}
[data-colors-header="colors-header-3A3043"]
  .section-content-right
  .header-dashboard
  .header-user
  .body-text,
[data-colors-header="colors-header-3A3043"]
  .section-content-right
  .header-dashboard
  .header-user
  .text-tiny,
[data-colors-header="colors-header-3A3043"]
  .section-content-right
  .header-dashboard
  .header-user
  .body-title {
  color: #fff !important;
}

[data-theme-primary="theme-primary-2377FC"] {
  --YellowGreen: #2377fc;
}

[data-theme-primary="theme-primary-C0FAA0"] {
  --YellowGreen: #c0faa0;
}

[data-theme-primary="theme-primary-35988D"] {
  --YellowGreen: #35988d;
}

[data-theme-primary="theme-primary-7047D6"] {
  --YellowGreen: #7047d6;
}

[data-theme-background="theme-background-FFFFFF"] {
  background-color: #ffffff;
}
[data-theme-background="theme-background-FFFFFF"]
  .section-content-right
  .main-content {
  background-color: #ffffff;
}

[data-theme-background="theme-background-252E3A"] {
  background-color: #252e3a;
}
[data-theme-background="theme-background-252E3A"]
  .section-content-right
  .main-content {
  background-color: #252e3a;
}

[data-theme-background="theme-background-1E1D2A"] {
  background-color: #1e1d2a;
}
[data-theme-background="theme-background-1E1D2A"]
  .section-content-right
  .main-content {
  background-color: #1e1d2a;
}

[data-theme-background="theme-background-1B2627"] {
  background-color: #1b2627;
}
[data-theme-background="theme-background-1B2627"]
  .section-content-right
  .main-content {
  background-color: #1b2627;
}

@media (min-width: 1440px) {
  .login-page {
    height: 100vh;
  }
}
@media (max-width: 1440px) {
  .wg-chart-default,
  .wg-box {
    padding: 24px 15px;
  }
}
@media (max-width: 1200px) {
  .form-style-2 .left {
    max-width: 150px !important;
  }
  .header-user {
    width: unset;
  }
  .header-user > div:last-child {
    display: none;
  }
  .upload-image {
    flex-wrap: wrap;
  }
  .layout-wrap.full-width .section-menu-left {
    left: 0;
  }
  .layout-wrap.full-width .section-menu-left .box-logo {
    left: 0;
  }
  .layout-wrap.full-width .section-content-right .header-dashboard {
    padding-left: 15px !important;
  }
  .layout-wrap .section-menu-left {
    left: -100%;
  }
  .layout-wrap .section-menu-left .box-logo {
    left: -100%;
  }
  .layout-wrap .section-content-right .main-content {
    padding-left: 0 !important;
    padding-top: 56px;
  }
  .layout-wrap .section-content-right .main-content .main-content-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .layout-wrap .section-content-right .header-dashboard {
    width: 100% !important;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    left: 0 !important;
  }
  .layout-wrap .section-content-right .header-dashboard .button-show-hide {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .layout-wrap .section-content-right .header-dashboard .header-left h6 {
    display: none;
  }
  .layout-wrap
    .section-content-right
    .header-dashboard
    .header-grid
    > .header-btn,
  .layout-wrap .section-content-right .header-dashboard .header-grid > .line1,
  .layout-wrap .section-content-right .header-dashboard .header-grid > .divider,
  .layout-wrap
    .section-content-right
    .header-dashboard
    .header-grid
    > .user
    .content,
  .layout-wrap .section-content-right .header-dashboard .header-grid > .apps,
  .layout-wrap
    .section-content-right
    .header-dashboard
    .header-grid
    > .button-dark-light,
  .layout-wrap .section-content-right .header-dashboard .header-grid > .message,
  .layout-wrap .section-content-right .header-dashboard .header-grid > .noti,
  .layout-wrap
    .section-content-right
    .header-dashboard
    .header-grid
    > .country {
    display: none;
  }
  .layout-wrap .section-content-right .header-dashboard .wg-user .image {
    width: 24px;
    height: 24px;
  }
  .layout-wrap .section-content-right .header-dashboard .form-search input {
    padding-top: 7px;
    padding-bottom: 7px;
    border-width: 0.5px;
  }
  .tf-container {
    width: unset;
  }
}
@media (max-width: 991px) {
  .my-card-item .icon {
    position: absolute;
    top: 22px;
    right: 11px;
    bottom: unset;
  }
  .grid-account-security .left {
    width: 55%;
  }
  .grid-account-security .right {
    width: 45%;
  }
  .account-security-item {
    flex-direction: column;
  }
  .account-security-item .heading,
  .account-security-item .content {
    width: 100%;
  }
  .account-security-item .content .content-item:not(:last-child) {
    margin-bottom: 24px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  .card-details .content {
    flex-wrap: wrap;
    gap: 24px;
  }
  .card-details .content > div {
    width: 100% !important;
  }
  .card-details .content .center .title {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .wg-box.token-sales-progress {
    max-width: 385px !important;
    width: 385px !important;
  }
  .wg-card.style-1-right.card-flex {
    flex-direction: column;
    padding: 15px;
    height: 280px;
  }

  .button-whitepaper {
    display: flex;
    justify-content: center;
  }

  .download-btn {
    width: 60% !important;
  }

  .col-md-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  .icon {
    margin-bottom: 15px;
  }

  .text {
    margin-bottom: 20px;
  }

  .counter.token-name {
    font-size: 20px !important;
  }

  .f12-medium {
    font-size: 13px !important;
  }

  .token-details {
    text-align: center;
    margin-bottom: 15px;
  }

  .detail-row {
    justify-content: center !important;
    gap: 15px !important;
    margin-bottom: 8px !important;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }

  .gaps2x {
    height: 15px !important;
  }

  .gap2x {
    height: 8px !important;
  }
}

@media (max-width: 480px) {
    .form-control.signup-input-field {
        height:40px !important
    }

    .wg-card.style-1-right.card-flex {
        padding: 12px;
    }

  .counter.token-name {
    font-size: 18px !important;
  }

  .detail-row {
    gap: 10px !important;
    font-size: 13px;
  }

  .download-btn {
    font-size: 13px;
    padding: 10px 14px;
  }
}
@media (max-width: 767px) {
    .form-control.signup-input-field {
        height: 40px !important;
    }
    .token-name {
        font-size: 18px;
    }
  .black {
    font-size: 12px;
  }
  .f12-medium {
    font-size: 13px;
  }
  h6,
  .h6 {
    font-size: 15px;
    line-height: 25px;
  }
  .counter .text-White {
    font-size: 14px !important ;
  }
  .gap24 {
    gap: 24px !important;
  }
  .offcanvas {
    padding: 30px 20px;
  }
  .offcanvas.offcanvas-end {
    border-radius: 0 !important;
  }
  .offcanvas .offcanvas-body form .radio-buttons .item input {
    top: 8px;
    left: 6px;
  }
  .offcanvas .offcanvas-body form .radio-buttons .item div {
    font-weight: 500;
    font-size: 12px;
  }
  .offcanvas .offcanvas-body form .radio-buttons .item label {
    height: 40px;
    padding: 10px 0 10px 34px;
  }
  .header-dashboard::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.1px;
    background-color: var(--Gray);
  }
  .grid-3-col {
    grid-template-columns: repeat(1, 1fr);
  }
  .sign-in-box .left {
    width: 100%;
  }
  .sign-in-box .right {
    display: none;
  }
  .list-transaction-head,
  .list-crypto-head {
    display: none !important;
  }
  .table-list-crypto .list-crypto-content {
    min-width: unset;
  }
  .table-list-crypto .list-crypto-content tr {
    flex-wrap: wrap;
    gap: 6px 0px;
    padding: 20px;
  }
  .table-list-crypto .list-crypto-content tr td {
    height: unset;
    padding: 0;
    place-content: end;
  }
  .table-list-crypto .list-crypto-content tr td [data-title]::before {
    content: attr(data-title);
    color: var(--Black);
    font-weight: 700;
    text-align: start;
    flex: 1 1 auto;
  }
  .table-list-crypto .list-crypto-content tr td:nth-child(1) {
    width: 30%;
    order: 1;
  }
  .table-list-crypto
    .list-crypto-content
    tr
    td:nth-child(1)
    .tf-checkbox-wrapp {
    display: none;
  }
  .table-list-crypto .list-crypto-content tr td:nth-child(2) {
    width: 30%;
    order: 3;
  }
  .table-list-crypto .list-crypto-content tr td:nth-child(5),
  .table-list-crypto .list-crypto-content tr td:nth-child(4) {
    display: none;
  }
  .table-list-crypto .list-crypto-content tr td:nth-child(3) {
    order: 2;
    width: 70%;
    text-align: end;
  }
  .table-list-crypto .list-crypto-content tr td:nth-child(6) {
    order: 4;
    width: 70%;
  }
  .table-list-crypto .list-crypto-content tr td:nth-child(6) > div > svg {
    display: none;
  }
  .tf-table-item::before {
    display: none;
  }
  .table-list-transaction .list-transaction-content {
    min-width: unset;
  }
  .table-list-transaction .list-transaction-content tr {
    flex-wrap: wrap;
  }
  .table-list-transaction .list-transaction-content tr td {
    height: 50px;
    padding: 0 !important;
  }
  .table-list-transaction .list-transaction-content tr td [data-title]::before {
    content: attr(data-title);
    color: var(--Black);
    font-weight: 700;
    text-align: start;
    flex: 1 1 auto;
  }
  .table-list-transaction .list-transaction-content tr td:nth-child(1) {
    width: 60%;
    order: 1;
  }
  .table-list-transaction
    .list-transaction-content
    tr
    td:nth-child(1)
    .tf-checkbox-wrapp {
    display: none;
  }
  .table-list-transaction .list-transaction-content tr td:nth-child(2) {
    width: max-content;
    max-width: 33.33%;
    order: 3;
  }
  .table-list-transaction .list-transaction-content tr td:nth-child(3),
  .table-list-transaction .list-transaction-content tr td:nth-child(4) {
    display: none;
  }
  .table-list-transaction .list-transaction-content tr td:nth-child(5) {
    order: 4;
    width: 90px;
  }
  .table-list-transaction .list-transaction-content tr td:nth-child(6) {
    order: 2;
    width: 40%;
    text-align: end;
  }
  .table-list-transaction .list-transaction-content tr td:nth-child(7) {
    order: 5;
    width: 103px;
  }
  .table-list-transaction .list-transaction-content tr td:nth-child(7) > div {
    margin-left: unset;
  }
  .topbar-search .form-search {
    max-width: 162px;
  }
  .topbar-search .form-search input {
    padding: 9px 10px 9px 34px !important;
  }
  .topbar-search .form-search .button-submit {
    left: 10px;
  }
  .grid-account-security {
    flex-wrap: wrap;
  }
  .grid-account-security .left,
  .grid-account-security .right {
    width: 100%;
  }
  .account-security-item .content .content-item:not(:last-child) {
    margin-bottom: 5px;
  }
  .login-page .right {
    display: none;
  }
  .login-page .login-box.type-signup {
    gap: 22px;
  }
  .form-style-1 > * {
    flex-wrap: wrap;
  }
  .form-style-1 > * > *:last-child {
    width: 100%;
  }
  .form-style-2 > * {
    flex-wrap: wrap;
  }
  .wg-order-detail {
    flex-wrap: wrap;
  }
  .wg-order-detail .right {
    max-width: unset;
  }
  .wg-filter,
  .order-track {
    flex-wrap: wrap;
  }
  .form-style-2 .left {
    max-width: unset !important;
  }
}
@media (max-width: 600px) {
  .layout-wrap .section-content-right .bottom-page {
    flex-direction: column;
  }
  .tf-section-4 > div {
    grid-column: span 4 / span 4 !important;
  }
  .w-half {
    width: 100% !important;
  }
  form .cols,
  form .cols-lg {
    flex-wrap: wrap;
    gap: 0 !important;
  }
  form .cols > *,
  form .cols-lg > * {
    max-width: 100% !important;
    width: 100% !important;
  }
  .flex-wrap-mobile {
    flex-wrap: wrap;
  }
  .road-map {
    flex-wrap: wrap;
    gap: 30px;
  }
  .road-map .road-map-item::before {
    display: none;
  }
  .mobile-wrap {
    flex-wrap: wrap;
  }
  .wrap-login-page {
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .upload-image .item {
    width: 100%;
    max-width: 100%;
    max-height: unset;
  }
}

/*# sourceMappingURL=styles.css.map */

.wg-card.style-1-right {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.icon {
  flex-shrink: 0;
}

.logo-text {
  margin-left: 10px;
}

.logo-text h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  color: black;
}

.content {
  flex: 1;
  margin-left: 20px;
}

.right-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.detail-row {
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 5px;
}

.label {
  color: #6b7280;
}

.value {
  color: black;
  font-weight: 500;
}

.download-btn {
  background: black;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.counter .text-white {
  font-size: 12px;
}

.wg-box.token-sales-progress {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 20px !important;
  padding: 25px !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;

  margin: 0 auto !important;
  width: 320px;
  min-width: 320px;
  max-width: 320px;
  flex: none !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
}

/* Also override any parent container constraints */
.wg-box.token-sales-progress .card-innr {
  width: 100% !important;
  max-width: none !important;
}

.card-innr {
    overflow: visible;
}

.kyc-dropdown-menu.dropdown-left {
    right: auto;
    left: 0;
}

/* Override grid or flex parent constraints */
.token-sales-progress {
  grid-column: unset !important;
  flex-basis: auto !important;
}

.token-progress-title {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  margin-bottom: 32px !important;
  letter-spacing: -0.025em !important;
  text-align: left !important;
}

.progress-info {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  margin: 0 0 36px 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.progress-info li {
  display: flex !important;
  flex-direction: column !important;
}

.progress-info .label {
  font-size: 11px !important;
  font-weight: 500 !important;
  color: #6b7280 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 8px !important;
}

.progress-info .value {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  line-height: 1.3 !important;
}

.progress-container {
  margin-bottom: 32px !important;
}

.progress-bar {
  position: relative !important;
  height: 8px !important;
  background: #f3f4f6 !important;
  border-radius: 12px !important;
  overflow: visible !important; /* Changed from hidden to visible */
  margin-bottom: 20px !important;
}

/* Add dots for each phase */



/* Private Sale dot (0%) */
.progress-bar::before {
  left: 0%;
  transform: translateX(-50%);
}

/* Hard Cap dot (100%) */
.progress-bar::after {
  left: 100%;
  transform: translateX(-50%);
}



/* Presale dot (32%) */

/* Soft Cap dot (65%) */

.progress-dot {
  position: absolute !important;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 2px solid #8b5cf6 !important;
  top: -2px !important;
  transform: translateX(-50%) !important;
  z-index: 2 !important;
}

.progress-bar {
  position: relative !important;
  height: 8px !important;
  background: #f3f4f6 !important;
  border-radius: 12px !important;
  overflow: visible !important;
  margin-bottom: 20px !important;
}

.progress-fill {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    height: 100% !important;
    background: #ff7e6a !important;
    border-radius: 12px !important;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.progress-labels {
  display: flex !important;
  justify-content: space-between !important;
  margin-bottom: 36px !important;
/*  padding: 0 4px !important;*/
}

.progress-label {
  text-align: center !important;
  flex: 1 !important;
}

.progress-label .stage {
  font-size: 9px !important;
  font-weight: 600 !important;
  color: #6b7280 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 6px !important;
  line-height: 1.2 !important;
}

.progress-label .amount {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #374151 !important;
  line-height: 1.2 !important;
}

.countdown-section {
    border-top: 1px solid #f3f4f6 !important;
    padding-top: 28px !important;
    margin-bottom: 0 !important;
}

.countdown-title {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #6b7280 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 24px !important;
    text-align: center !important;
}

.countdown-timer {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
}

.countdown-item {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 16px 8px !important;
    text-align: center !important;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 60px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.countdown-item::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.countdown-item:hover {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  transform: translateY(-2px) !important;
  border-color: #d1d5db !important;
}

.countdown-item:hover::before {
  opacity: 1 !important;
}

.countdown-number {
    display: inline !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #1f2937 !important;
    line-height: 1 !important;
    margin-bottom: 0px !important;
    font-feature-settings: "tnum" !important;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.countdown-number,
.countdown-time {
    display: block !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #1f2937 !important;
    line-height: 1 !important;
    margin: 0 0 5px 0 !important;
}

.countdown-label {
    font-size: 10px !important;
    font-weight: 600 !important;
    color: #9ca3af !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

@media (max-width: 480px) {
    .countdown-timer,
    .countdown-clock-dashboard {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .countdown-item {
        padding: 12px 6px !important;
        min-height: 70px !important;
    }

    .countdown-number,
    .countdown-time {
        font-size: 24px !important;
    }

    .countdown-label {
        font-size: 9px !important;
    }
}

/* Alternative style with more pronounced shadows and borders */
.countdown-item.style-enhanced {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%) !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06), inset 0 1px 0 0 rgba(255, 255, 255, 0.8) !important;
}

.countdown-item.style-enhanced:hover {
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05), inset 0 1px 0 0 rgba(255, 255, 255, 0.9) !important;
}

/* Dark theme variant */
.countdown-item.dark-theme {
  background: linear-gradient(145deg, #374151 0%, #4b5563 100%) !important;
  border: 1px solid #4b5563 !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3),
    0 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
}

.countdown-item.dark-theme .countdown-number {
  color: #f9fafb !important;
  background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.countdown-item.dark-theme .countdown-label {
  color: #d1d5db !important;
}

/* ========== Card wrapper (center everything) ========== */
.wg-box.token-calculator {
    /* Ensure fixed dimensions */
    width: 365px !important;
    min-width: 365px !important;
    max-width: 365px !important;
    flex-shrink: 0 !important;
    background-color: #ff7e6a;
}

/* inner container */
.token-calculator .card-innr {
    width: 100% !important;
    max-width: 480px !important;
    margin-top: 30px;
}

.token-calc {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important; /* Reduced gap */
    margin-bottom: 50px !important;
    overflow: hidden !important; /* Prevent overflow */
}

    .token-calc .token-pay-currency a {
        padding: 12px 10px !important; /* Reduced padding */
        font-size: 13px !important; /* Smaller font */
        font-weight: 500 !important;
    }

    .token-calc .token-received-amount {
        display: flex !important;
        align-items: baseline !important;
        gap: 3px !important; /* Reduced gap */
        max-width: 140px !important; /* Fixed max width */
        overflow: hidden !important;
        flex-shrink: 1 !important;
        flex-wrap: wrap !important; /* Allow wrapping if needed */
    }

        .token-calc .token-received-amount .token-amount {
            font-size: 16px !important; /* Significantly reduced from 30px */
            font-weight: 700 !important;
            color: var(--Primary, #161326) !important;
            word-break: break-all !important;
            line-height: 1.1 !important;
            margin: 0 !important;
            max-width: 100px !important;
        }

        .token-calc .token-received-amount .token-symbol {
            font-size: 12px !important; /* Reduced from 20px */
            font-weight: 500 !important;
            flex-shrink: 0 !important;
        }

.token-calc-note {
    gap: 6px !important;
    margin: 8px 0 28px !important;
}

    .token-calc-note em,
    .token-calc-note .note-text {
        font-size: 10px !important; /* Smaller note text */
        line-height: 1.3 !important;
    }

/* Mobile adjustments */
@media (max-width: 480px) {
    .wg-box.token-calculator {
        width: 320px !important;
        min-width: 390px !important;
        max-width: 390px !important;
    }

    .token-calc {
        gap: 6px !important;
    }

        .token-calc .token-pay-amount input {
            width: 65px !important;
            max-width: 65px !important;
            min-width: 65px !important;
            font-size: 11px !important;
            padding: 10px 6px !important;
        }

        .token-calc .token-pay-currency a {
            padding: 130px 8px !important;
            font-size: 11px !important;
        }

        .token-calc .token-received-amount {
            max-width: 120px !important;
        }

            .token-calc .token-received-amount .token-amount {
                font-size: 14px !important;
                max-width: 85px !important;
            }

            .token-calc .token-received-amount .token-symbol {
                font-size: 11px !important;
            }

    .token-calc-note em,
    .token-calc-note .note-text {
        font-size: 9px !important;
    }
}

    .token-calc .token-pay-amount input {
        width: 75px !important; /* Reduced width */
        max-width: 75px !important;
        min-width: 75px !important;
        padding: 12px 8px !important; /* Reduced padding */
        font-size: 12px !important; /* Smaller font */
        font-weight: 500 !important;
        text-align: center !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

/* headings */
.token-calculator .label-01 {
  color: #111827 !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  margin-bottom: 8px !important;
}
.token-calculator .card-title-text {
    color: #161326 !important;
    font-size: 14px !important;
    margin-bottom: 40px !important;
    text-align: start;
}

/* calc row */
.token-calc {
  display: flex !important;
  align-items: center !important;
  justify-content: start !important;
  gap: 10px !important;
  margin-bottom: 50px !important;
}

/* amount + currency */
.token-pay-amount {
  display: flex !important;
  align-items: center !important;
}

/* Input */
.token-pay-amount input {
  background: #fff !important;
  border: 1px solid #d1d5db !important;
  border-radius: 6px 0 0 6px !important;
  padding: 18px 14px !important;
  width: 90px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-align: center !important;
  color: #111827 !important;
}

.token-pay-amount input:focus {
  outline: none !important;
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
}
.token-pay-currency a {
  background: #fff !important;
  border: 1px solid #d1d5db !important;
  border-left: none !important;
  border-radius: 0 6px 6px 0 !important;
  padding: 19px 16px !important;
  font-size: 14px !important;
  color: #374151 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

.token-pay-currency a:hover {
  background: #f9fafb !important;
}

/* equals + result */
.token-eq-sign {
  font-size: 20px !important;
  font-weight: 500 !important;
  color: #374151 !important;
}
.token-received-amount {
  display: flex !important;
  align-items: baseline !important;
  gap: 4px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #111827 !important;
}
.token-received-amount .token-amount {
  margin: 0 !important;
  font-size: 30px !important;
  font-weight: 700 !important;
}
.token-received-amount .token-symbol {
  font-size: 20px !important;
  font-weight: 500 !important;
  color: #374151 !important;
}

/* note */
.token-calc-note {
  display: flex !important;
  align-items: start !important;
  justify-content: start !important;
  gap: 8px !important;
  margin: 8px 0 28px !important;
}
    .token-calc-note em,
    .token-calc-note .note-text {
        color: #161326 !important;
        font-size: 11px !important;
        text-align: start;
    }

/* button */
.token-buy {
  display: flex !important;
  justify-content: center !important;
  margin-top: 30px;
}
.token-buy .tf-button {
  background: #111827 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 14px 28px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  min-width: 180px !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}
.token-buy .tf-button:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18) !important;
}

/* small screens */
@media (max-width: 420px) {
  .token-calc {
    gap: 12px !important;
  }
  .token-pay-amount input {
    width: 86px !important;
  }
}

/* ===== Backdrop (if you aren't using Bootstrap's JS) ===== */
.modal {
  display: none;
}
.modal.show {
  display: block;
}
.modal.fade .modal-dialog {
  transform: translate3d(0, -10px, 0);
  transition: transform 0.2s ease;
}
.modal.show .modal-dialog {
  transform: translate3d(0, 0, 0);
}

/* ===== Dialog sizing & centering ===== */
.modal-dialog.modal-dialog-md {
  max-width: 640px;
  margin: 1.75rem auto;
}
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}

/* ===== Card ===== */
.modal-content {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  position: relative;
}
.popup-body {
  padding: 28px 28px 24px;
}

/* Close (X) */
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f3f4f6;
  color: #6b7280;
  text-decoration: none;
}
.modal-close:hover {
  background: #e5e7eb;
  color: #111827;
}

/* Titles */
.popup-title {
  margin: 0 0 6px;
  color: #1e3a8a; /* deep blue */
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
.font-bold {
  font-weight: 700;
  color: #111827;
  margin: 8px 0 10px;
}

/* Copy row (network icon + disabled input) */
.copy-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 16px;
}
.copy-wrap em {
  color: #6b7280;
  font-size: 16px;
}
.copy-address {
  border: none;
  outline: none;
  width: 100%;
  color: #111827;
  font-weight: 600;
  font-size: 15px;
  background: transparent;
}
.copy-address[disabled] {
  opacity: 1;
}

/* Label + input */
.input-item-label {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 6px;
}
.input-bordered {
  width: 100%;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  color: #111827;
}
.input-bordered:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Agree row */
.agree-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-size: 14px;
}
.input-checkbox-md {
  width: 18px;
  height: 18px;
}

/* Primary button (black like screenshot) */
.btn.btn-primary {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}
.btn.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
}
.btn.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Note (red) */
.note.note-danger {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #b91c1c;
  background: transparent;
  border: 0;
  padding: 0;
  margin-top: 14px;
}
.note.note-danger em {
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 480px) {
  .modal-dialog.modal-dialog-md {
    max-width: 92vw;
  }
  .popup-body {
    padding: 22px;
  }
}

/* ===== Modal card ===== */
#get-pay-address .modal-content {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
#get-pay-address .popup-body {
  padding: 28px 28px 22px;
}

/* Close button (subtle, not huge) */
#get-pay-address .modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #eef2f7;
  color: #6b7280;
  text-decoration: none;
}
#get-pay-address .modal-close:hover {
  background: #e5e7eb;
  color: #111827;
}

/* Headings */
#get-pay-address .popup-title {
  margin: 0 0 8px;
  color: #1e3a8a; /* deep blue */
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.1px;
}
#get-pay-address .font-bold {
  margin: 6px 0 10px;
  font-weight: 700;
  color: #111827;
}

/* Copy row (network icon + address field) */
#get-pay-address .copy-wrap {
  display: flex;
  align-items: center;
  gap: 0px;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0px 0px;
  margin-bottom: 16px;
}
#get-pay-address .copy-wrap em {
  color: #6b7280;
  font-size: 16px;
}
#get-pay-address .copy-address {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 15px;
  color: #111827;
  font-weight: 600;
}
#get-pay-address .copy-feedback {
  margin-left: auto;
  font-size: 12px;
  color: #16a34a;
}

/* Inputs */
#get-pay-address .input-item-label {
  display: block;
  margin: 10px 0 6px;
  color: #6b7280;
  font-size: 13px;
}
#get-pay-address .input-bordered {
  width: 100%;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  color: #111827;
}
#get-pay-address .input-bordered:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Checkbox + Button on one line */
#get-pay-address .actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 25px 0 25px;
}
#get-pay-address .agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.35;
  margin: 0;
  user-select: none;
}
#get-pay-address .agree input {
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1.5px solid #9ca3af;
  border-radius: 4px;
  display: inline-block;
}
#get-pay-address .agree input:checked {
  background: #111827;
  border-color: #111827;
  box-shadow: inset 0 0 0 3px #fff;
}

/* Primary button (black, compact, right side) */
#get-pay-address .btn-primary {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
  white-space: nowrap;
}
#get-pay-address .btn-primary:hover {
  transform: translateY(-1px);
}
#get-pay-address .btn-primary:disabled {
  opacity: 0.55;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* Danger note */
#get-pay-address .note.note-danger {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #b91c1c;
  background: transparent;
  border: 0;
  padding: 0;
  margin-top: 8px;
}
#get-pay-address .note.note-danger p {
  margin: 0;
  font-size: 12.5px;
  margin-top: 15px;
}

/* Responsive */
@media (max-width: 540px) {
  #get-pay-address .actions-row {
    flex-direction: column;
    align-items: stretch;
  }
  #get-pay-address .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

 .input--required {
            border: 2px solid red;
            background-color: #fdd;
        }

        .page-header-kyc {
            padding: 40px 0;
            background: var(--Gainsboro);
            text-align: center;
        }

        .page-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--Black);
            margin-bottom: 12px;
        }

        .large {
            font-size: 16px;
            color: var(--Gray);
        }

        .kyc-form-steps {
            background: var(--White);
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0px 4px 24px 2px rgba(20, 25, 38, 0.05);
        }

        .form-step-head {
            margin-bottom: 24px;
        }

        .step-head {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--Primary);
            color: var(--White);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
        }

        .step-head-text h4 {
            color: var(--Black);
            margin-bottom: 4px;
        }

        .step-head-text p {
            color: var(--Gray);
            font-size: 14px;
            margin: 0;
        }

        .note {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 24px;
        }

        .note-plane.note-light-alt {
            background: rgba(192, 250, 160, 0.1);
            border: 1px solid rgba(192, 250, 160, 0.3);
        }

        .note em {
            font-size: 16px;
            color: var(--YellowGreen);
        }

        .note p {
            color: var(--Black);
            margin: 0;
            font-size: 14px;
        }

        .nav-tabs-bordered {
            border: none;
            margin-bottom: 24px;
            gap: 8px;
        }

        .nav-tabs-bordered .nav-item {
            flex: 1;
        }

        .nav-tabs-bordered .nav-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 24px 20px;
            border: 1px solid var(--LightGray);
            border-radius: 12px;
            text-decoration: none;
            color: var(--Gray);
            transition: all 0.3s ease;
            margin: 0 4px;
            font-size: 16px;
            width: 180px;
            justify-content: center;
        }

        .nav-tabs-bordered .nav-link.active {
            background: var(--Primary);
            color: var(--White);
            border-color: var(--Primary);
        }

        .nav-tabs-bordered .nav-link span {
            font-size: 15px;
            /* make text slightly larger */
            font-weight: 600;
            /* make text bolder */
        }

        .nav-tabs-icon {
            width: 40px;
            height: 40px;
            margin-bottom: 8px;
            position: relative;
        }

        .nav-tabs-icon img {
            width: 100%;
            height: 100%;
        }

        .nav-tabs-icon img:last-child {
            display: none;
        }

        .nav-link.active .nav-tabs-icon img:first-child {
            display: none;
        }

        .nav-link.active .nav-tabs-icon img:last-child {
            display: block;
        }

        .list-check {
            list-style: none;
            padding: 0;
            margin-bottom: 24px;
        }

        .list-check li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 8px;
            color: var(--Black);
            font-size: 14px;
        }

        .list-check li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--YellowGreen);
            font-weight: bold;
        }

        .upload-box {
            margin-bottom: 24px;
        }

        .upload-zone {
            border: 2px dashed var(--LightGray);
            border-radius: 12px;
            padding: 40px 20px;
            text-align: center;
            background: var(--Gainsboro);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .upload-zone:hover {
            border-color: var(--Primary);
            background: rgba(22, 19, 38, 0.05);
        }

        .dz-message {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .dz-message-text {
            color: var(--Gray);
            font-size: 14px;
        }

        .dz-message-or {
            color: var(--Gray);
            font-size: 12px;
        }

        .dz-message .btn {
            background: var(--Primary);
            color: var(--White);
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
        }

        .questionaireTabs,
        .questionaireTabs-pass,
        .questionaireTabs-drive {
            border: none;
            margin-bottom: 24px;
        }

        .questionaireTabsContent,
        .questionaireTabsContent-pass,
        .questionaireTabsContent-drive {
            margin-bottom: 24px;
        }

.input-item {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

        .input-checkbox-md {
            width: 20px;
            height: 20px;
            margin-right: 8px;
        }

        .input-item label {
            display: flex;
            align-items: center;
            color: var(--Black);
            font-size: 14px;
            cursor: pointer;
        }

        .input-item a {
            color: var(--Primary);
            text-decoration: none;
        }

        .input-item a:hover {
            color: var(--YellowGreen);
        }

        .gaps-1x {
            height: 16px;
        }

        .gaps-2x {
            height: 32px;
        }

        .gaps-3x {
            height: 48px;
        }

        .font-mid {
            font-size: 16px;
            font-weight: 600;
            color: var(--Black);
            margin-bottom: 12px;
        }

        #submitVerification,
        #Passportsubmit,
        #DriverSubmit {
            background: var(--Primary);
            color: var(--White);
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        #submitVerification:hover,
        #Passportsubmit:hover,
        #DriverSubmit:hover {
            background: var(--YellowGreen);
            color: var(--Primary);
        }

        .tab-pane {
            display: none;
        }

        .tab-pane.active {
            display: block;
        }

        .mt-25 {
            margin-top: 25px;
        }

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-bar {
/*    margin-bottom: 30px;*/
}

.copyright-text {
    font-size: 20px;
    font-weight: 400px;
}

/* Professional Table Styling - Add this to your CSS file */
.wg-box.style-1.bg-Gainsboro.shadow-none {
    background: var(--White) !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08) !important;
}

.table.tnx-table thead {
    background: linear-gradient(135deg, var(--Primary) 0%, #2a1f3d 100%);
}

    .table.tnx-table thead th {
        padding: 18px 24px;
        font-size: 12px;
        font-weight: 700;
        color: var(--White);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: none;
    }

.table.tnx-table tbody tr {
    background: var(--White);
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8fafc;
}

    .table.tnx-table tbody tr:hover {
        background: #f8fafc;
        transform: translateX(4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.table.tnx-table tbody td {
    padding: 16px 12px;
    border: none;
    vertical-align: middle;
    font-size: 14px;
    position: relative;
    min-width: 120px; /* Ensure minimum width */
}

    /* Token amount styling */
    .table.tnx-table tbody td:first-child {
        text-align: left;
        font-weight: 700;
        font-size: 16px;
        color: var(--Black);
        position: relative;
        padding-right: 80px;
        min-width: 160px;
    }

/*        .table.tnx-table tbody td:first-child::after {
            content: "TOKENS";
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: #a0bcfa;
            color: var(--Primary);
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }*/

    /* USD amount styling */
    .table.tnx-table tbody td:nth-child(2) {
        font-weight: 600;
        font-size: 15px;
        color: var(--Success);
        min-width: 100px;
        padding: 16px 8px;
    }

    /* User avatar styling */
    .table.tnx-table tbody td:nth-child(3) {
        vertical-align: middle;
        text-align: start;
    }

       
    /* Email column */
    .table.tnx-table tbody td:nth-child(4) {
        color: var(--Gray);
        font-size: 12px;
        min-width: 180px;
        padding: 16px 8px;
        text-align: start;
        vertical-align: middle;
        white-space: normal;
        word-break: break-word;
    }

    /* Status column */
    .table.tnx-table tbody td:nth-child(5) {
        text-align: right;
        min-width: 100px;
        padding: 16px 20px 16px 12px;
    }



.status-completed,
.status-pending,
.status-failed {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px; /* Add right margin to prevent border overlap */
}

/* Status badges */
.status-completed {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-pending {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-failed {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.table--wrapper {
    overflow-x: hidden;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    background: var(--White);
/*    padding-right: 4px;*/
}

.table.tnx-table {
    min-width: unset; /* Remove fixed minimum width */
    width: 100%;
    table-layout: fixed;
}

    .table.tnx-table thead th:first-child,
    .table.tnx-table tbody td:first-child {
        width: 25%; /* Token amount column */
        min-width: unset;
    }

    .table.tnx-table thead th:nth-child(2),
    .table.tnx-table tbody td:nth-child(2) {
        width: 15%; /* USD amount column */
        min-width: unset;
    }

    .table.tnx-table thead th:nth-child(3),
    .table.tnx-table tbody td:nth-child(3) {
        width: 20%; /* Name column */
        min-width: unset;
    }

    .table.tnx-table thead th:nth-child(4),
    .table.tnx-table tbody td:nth-child(4) {
        width: 25%; /* Email column */
        min-width: unset;
    }

    .table.tnx-table thead th:nth-child(5),
    .table.tnx-table tbody td:nth-child(5) {
        width: 15%; /* Status column */
        min-width: unset;
    }

    /* Header adjustments */
    .table.tnx-table thead th {
        padding: 16px 12px;
        font-size: 11px;
        font-weight: 700;
        color: var(--White);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: none;
        white-space: nowrap;
    }

        .table.tnx-table thead th:first-child {
            min-width: 160px;
        }

        .table.tnx-table thead th:nth-child(2) {
            min-width: 100px;
        }

        .table.tnx-table thead th:nth-child(3) {
            min-width: 140px;
        }

        .table.tnx-table thead th:nth-child(4) {
            min-width: 180px;
        }

        .table.tnx-table thead th:nth-child(5) {
            min-width: 100px;
            text-align: center;
        }

.transaction-table thead th:nth-child(5) {
    width: 10% !important;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
    .table.tnx-table tbody td:first-child {
        padding-right: 12px;
        min-width: auto;
    }

        .table.tnx-table tbody td:first-child::after {
            position: static;
            display: block;
            margin-top: 4px;
            transform: none;
            right: auto;
        }

    .table.tnx-table tbody td:nth-child(3) {
        position: relative;
        padding-left: 12px; /* Remove extra left padding */
        min-width: 140px;
        text-align: left; /* Center the text */
    }

        .table.tnx-table tbody td:nth-child(3)::before {
            display: none;
        }

    .table.tnx-table tbody td {
        padding: 16px 12px;
        border: none;
        vertical-align: middle;
        font-size: 14px;
        text-align: center; /* Center all content */
        min-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.countdown-timer,
.countdown-clock-dashboard {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}



/* Mobile-only styles - Fix horizontal scrolling */
@media (max-width: 768px) {
    /* Apply overflow to the table wrapper, not the wg-box */
    .wg-box {
        padding: 16px 12px !important;
        overflow: visible !important; /* Reset this */
    }

    /* Create scrollable wrapper for the table */
    .table--wrapper,
    .table-list-transaction {
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch !important;
        margin: 0 -12px !important; /* Extend to edges */
        padding: 0 12px !important;
    }

        /* Custom scrollbar styling */
        .table--wrapper::-webkit-scrollbar,
        .table-list-transaction::-webkit-scrollbar {
            height: 6px !important;
        }

        .table--wrapper::-webkit-scrollbar-track,
        .table-list-transaction::-webkit-scrollbar-track {
            background: #f1f5f9 !important;
            border-radius: 3px !important;
        }

        .table--wrapper::-webkit-scrollbar-thumb,
        .table-list-transaction::-webkit-scrollbar-thumb {
            background: #cbd5e1 !important;
            border-radius: 3px !important;
        }

    /* If your table is directly in wg-box without wrapper */
    .wg-box > #transactionsTable,
    .wg-box > .table {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        margin: 0 -12px !important;
        padding: 0 12px !important;
    }

    /* Force minimum width to enable horizontal scrolling */
    #transactionsTable,
    .table.tnx-table {
        min-width: 900px !important;
        width: 600px !important; /* Fixed width instead of auto */
    }

        /* Increase font sizes slightly for mobile */
        .table.tnx-table thead th {
            font-size: 13px !important;
            padding: 20px 16px !important;
        }

        .table.tnx-table tbody td {
            font-size: 16px !important;
            padding: 18px 14px !important;
        }

            /* Token amount column - bigger font */
            .table.tnx-table tbody td:first-child {
                font-size: 18px !important;
                font-weight: 700 !important;
            }

            /* USD amount column - bigger font */
            .table.tnx-table tbody td:nth-child(2) {
                font-size: 17px !important;
                font-weight: 600 !important;
            }

            /* User name column - bigger font */
            .table.tnx-table tbody td:nth-child(3) {
                font-size: 16px !important;
                font-weight: 600 !important;
            }

            /* Email column - bigger font */
            .table.tnx-table tbody td:nth-child(4) {
                font-size: 14px !important;
            }

    /* Status badges - bigger */
    .status-completed,
    .status-pending,
    .status-failed {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }

    /* TOKENS badge - bigger */
    .table.tnx-table tbody td:first-child::after {
        font-size: 10px !important;
        padding: 4px 10px !important;
    }
}

@media (max-width: 480px) {
    .table--wrapper,
    .table-list-transaction,
    .wg-box > #transactionsTable,
    .wg-box > .table {
        margin: 0 -8px !important;
        padding: 0 8px !important;
    }
}


/* Add these styles to your existing styles.css file */

/* Question navigation tabs styling */
.questionaireTabs,
.questionaireTabs-pass,
.questionaireTabs-drive {
    display: flex;
    gap: 8px;
    border: none;
    margin-bottom: 24px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

    .questionaireTabs .nav-item,
    .questionaireTabs-pass .nav-item,
    .questionaireTabs-drive .nav-item {
        flex: 0 0 auto;
    }

    .questionaireTabs .nav-link,
    .questionaireTabs-pass .nav-link,
    .questionaireTabs-drive .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 2px solid var(--LightGray);
        border-radius: 50%;
        background: var(--White);
        color: var(--Gray);
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

        .questionaireTabs .nav-link:hover,
        .questionaireTabs-pass .nav-link:hover,
        .questionaireTabs-drive .nav-link:hover {
            border-color: var(--Primary);
            color: var(--Primary);
        }

        .questionaireTabs .nav-link.active,
        .questionaireTabs-pass .nav-link.active,
        .questionaireTabs-drive .nav-link.active {
            background: var(--Primary);
            border-color: var(--Primary);
            color: var(--White);
        }

        .questionaireTabs .nav-link.input--required,
        .questionaireTabs-pass .nav-link.input--required,
        .questionaireTabs-drive .nav-link.input--required {
            background: #ffebee;
            border-color: #f44336;
            color: #f44336;
            animation: questionShake 0.3s ease-in-out;
        }

@keyframes questionShake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

/* Question content styling */
.questionaireTabsContent,
.questionaireTabsContent-pass,
.questionaireTabsContent-drive {
    background: var(--Gainsboro);
    border-radius: 12px;
    padding: 24px;
    min-height: 280px;
}

    .questionaireTabsContent .tab-pane,
    .questionaireTabsContent-pass .tab-pane,
    .questionaireTabsContent-drive .tab-pane {
        display: none;
    }

        .questionaireTabsContent .tab-pane.active.show,
        .questionaireTabsContent-pass .tab-pane.active.show,
        .questionaireTabsContent-drive .tab-pane.active.show {
            display: block;
        }

/* Question text styling */
.question-class {
    color: var(--Black) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    line-height: 1.5 !important;
}

/* Answer options styling */
.answer-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-item.text-left {
    position: relative;
    margin-bottom: 12px;
}

    .input-item.text-left input.input-radio {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .input-item.text-left label {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
        background: var(--White);
        border: 2px solid var(--LightGray);
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 14px;
        line-height: 1.4;
        color: var(--Black);
        margin: 0;
        width: 100%;
    }

        .input-item.text-left label::before {
            content: '';
            width: 20px;
            height: 20px;
            border: 2px solid var(--LightGray);
            border-radius: 50%;
            background: var(--White);
            flex-shrink: 0;
            margin-top: 1px;
            transition: all 0.3s ease;
        }

    .input-item.text-left input.input-radio:checked + label {
        border-color: var(--Primary);
        background: rgba(22, 19, 38, 0.05);
    }

        .input-item.text-left input.input-radio:checked + label::before {
            border-color: var(--Primary);
            background: var(--Primary);
            box-shadow: inset 0 0 0 4px var(--White);
        }

    .input-item.text-left label:hover {
        border-color: var(--Primary);
        background: rgba(22, 19, 38, 0.02);
    }

/* Checkbox styling for confirmation */
#info-currect,
#CheckBox_13 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid var(--LightGray);
}

    #info-currect input[type="checkbox"],
    #CheckBox_13 input[type="checkbox"] {
        width: 20px !important;
        height: 20px !important;
        border: 2px solid var(--LightGray) !important;
        border-radius: 4px !important;
        background: var(--White) !important;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        position: relative;
        margin-top: 2px;
        flex-shrink: 0;
    }

        #info-currect input[type="checkbox"]:checked,
        #CheckBox_13 input[type="checkbox"]:checked {
            background: var(--Primary) !important;
            border-color: var(--Primary) !important;
        }

            #info-currect input[type="checkbox"]:checked::after,
            #CheckBox_13 input[type="checkbox"]:checked::after {
                content: '✓';
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                color: var(--White);
                font-size: 12px;
                font-weight: bold;
            }

    #info-currect.input--required input[type="checkbox"],
    #CheckBox_13.input--required input[type="checkbox"] {
        border-color: #f44336 !important;
        background: #ffebee !important;
    }

    #info-currect label,
    #CheckBox_13 label {
        color: var(--Black);
        font-size: 14px;
        cursor: pointer;
        line-height: 1.4;
        margin: 0;
    }

/* Submit button styling */
#submitVerification,
#Passportsubmit,
#DriverSubmit {
    background: var(--Primary) !important;
    color: var(--White) !important;
    border: none !important;
    padding: 14px 32px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 8px !important;
    width: 13%;
}

    #submitVerification:hover,
    #Passportsubmit:hover,
    #DriverSubmit:hover {
        background: var(--YellowGreen) !important;
        color: var(--Primary) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(192, 250, 160, 0.4) !important;
    }

    #submitVerification:disabled,
    #Passportsubmit:disabled,
    #DriverSubmit:disabled {
        background: var(--Gray) !important;
        color: var(--White) !important;
        cursor: not-allowed !important;
        transform: none !important;
        box-shadow: none !important;
    }

/* Responsive design */
@media (max-width: 768px) {
    .questionaireTabs,
    .questionaireTabs-pass,
    .questionaireTabs-drive {
        justify-content: center;
    }

        .questionaireTabs .nav-link,
        .questionaireTabs-pass .nav-link,
        .questionaireTabs-drive .nav-link {
            width: 40px;
            height: 40px;
            font-size: 12px;
        }

    .questionaireTabsContent,
    .questionaireTabsContent-pass,
    .questionaireTabsContent-drive {
        padding: 16px;
        min-height: 240px;
    }

    .input-item.text-left label {
        padding: 12px;
        font-size: 13px;
    }

    #submitVerification,
    #Passportsubmit,
    #DriverSubmit {
        width: 100% !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .questionaireTabs .nav-link,
    .questionaireTabs-pass .nav-link,
    .questionaireTabs-drive .nav-link {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }
}

.lead {
    display: flex;
    align-items: baseline;
    gap: 3px;
}


/* Transaction Action Buttons */
.transaction-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px 0;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: var(--Gainsboro);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

    .action-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    }

    .action-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    }

/* Edit Button */
.edit-btn {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

    .edit-btn:hover {
        background: #22c55e;
        color: var(--White);
        border-color: #22c55e;
    }

/* Details/View Button */
.details-btn {
    background: rgba(255, 116, 51, 0.1);
    border-color: rgba(255, 116, 51, 0.2);
    color: #ff7433;
}

    .details-btn:hover {
        background: #ff7433;
        color: var(--White);
        border-color: #ff7433;
    }

/* Delete Button */
.delete-btn {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

    .delete-btn:hover {
        background: #ef4444;
        color: var(--White);
        border-color: #ef4444;
    }

/* Icon styling */
.action-btn i {
    font-size: 14px;
    transition: all 0.2s ease;
}

/* Actions column width adjustment */
.table.tnx-table thead th:nth-child(6),
.table.tnx-table tbody td:nth-child(6) {
    width: 15%;
    min-width: 120px;
    text-align: center;
    padding: 16px 8px;
}

.table.tnx-table thead th:nth-child(6) {
    text-align: center;
}

/* Adjust other column widths to accommodate actions */
.table.tnx-table thead th:first-child,
.table.tnx-table tbody td:first-child {
    width: 20%; /* Reduced from 25% */
}

.table.tnx-table thead th:nth-child(2),
.table.tnx-table tbody td:nth-child(2) {
    width: 12%; /* Reduced from 15% */
}

.table.tnx-table thead th:nth-child(3),
.table.tnx-table tbody td:nth-child(3) {
    width: 18%; /* Reduced from 20% */
}

.table.tnx-table thead th:nth-child(4),
.table.tnx-table tbody td:nth-child(4) {
    width: 22%; /* Reduced from 25% */
}

.table.tnx-table thead th:nth-child(5),
.table.tnx-table tbody td:nth-child(5) {
    width: 13%; /* Reduced from 15% */
}

/* Tooltip styling */
.action-btn[title] {
    position: relative;
}

    .action-btn[title]:hover::after {
        content: attr(title);
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: var(--Black);
        color: var(--White);
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 11px;
        white-space: nowrap;
        z-index: 100;
        margin-bottom: 4px;
        opacity: 0;
        animation: fadeInTooltip 0.2s ease forwards;
    }

@keyframes fadeInTooltip {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(2px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .transaction-actions {
        gap: 4px;
    }

    .action-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .table.tnx-table thead th:nth-child(6),
    .table.tnx-table tbody td:nth-child(6) {
        min-width: 100px;
        width: 12%;
    }

    /* Hide tooltips on mobile */
    .action-btn[title]:hover::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .transaction-actions {
        flex-direction: column;
        gap: 2px;
    }

    .action-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
}


/* Transaction Actions Styling - Based on Original Structure */

/* Edit Badge Column */
.dt-type-md.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-outline.badge-success {
    background: #ededed;
    border: #ededed;
    font-weight: 600;
    color:black;
}

.badge-outline.badge-success a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
}

.badge-outline.badge-success:hover {
    background: #22c55e;
}

.badge-outline.badge-success:hover a {
    color: var(--White);
}

/* Dropdown Actions */
.relative {
    position: relative;
}

.d-inline-block {
    display: inline-block;
}

.btn-light-alt {
    background: var(--Gainsboro);
    border: 1px solid #e5e7eb;
    color: #6b7280;
    padding: 6px 8px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-light-alt:hover {
    background: #e5e7eb;
    color: #374151;
    text-decoration: none;
}

.btn-xs {
    font-size: 11px;
    padding: 4px 6px;
}

.btn-icon {
    width: 28px;
    height: 28px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.toggle-tigger {
    cursor: pointer;
}

/* Dropdown Content */
.dropdown-content {
    position: absolute;
    background: var(--White);
    min-width: 160px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    padding: 8px 0;
}

.dropdown-content-top-left {
    top: 100%;
    left: 0;
    margin-top: 4px;
}

.relative:hover .dropdown-content,
.toggle-class.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-list li {
    margin: 0;
}

.dropdown-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.dropdown-list li a:hover {
    background: #f3f4f6;
    color: #1f2937;
    text-decoration: none;
}

.dropdown-list li a em {
    font-size: 14px;
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Inline Action Buttons */
.data-action-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.data-action-list li {
    margin: 0;
}

.btn-auto {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--Primary);
    color: var(--White);
}

.btn-primary:hover {
    background: var(--YellowGreen);
    color: var(--Primary);
    text-decoration: none;
}

.btn-danger-alt {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-danger-alt:hover {
    background: #ef4444;
    color: var(--White);
    text-decoration: none;
}

/* Column Adjustments */
.table.tnx-table thead th:nth-child(6),
.table.tnx-table tbody td:nth-child(6) {
    width: 10%;
    min-width: 80px;
    text-align: center;
    padding: 16px 8px;
}

.table.tnx-table thead th:nth-child(7),
.table.tnx-table tbody td:nth-child(7) {
    width: 12%;
    min-width: 120px;
    text-align: right;
    padding: 16px 12px;
}

/* Adjust other columns to accommodate new action columns */
.table.tnx-table thead th:first-child,
.table.tnx-table tbody td:first-child {
    width: 18%; /* Reduced from 25% */
}

.table.tnx-table thead th:nth-child(2),
.table.tnx-table tbody td:nth-child(2) {
    width: 12%; /* Reduced from 15% */
}

.table.tnx-table thead th:nth-child(3),
.table.tnx-table tbody td:nth-child(3) {
    width: 16%; /* Reduced from 20% */
}

.table.tnx-table thead th:nth-child(4),
.table.tnx-table tbody td:nth-child(4) {
    width: 20%; /* Reduced from 25% */
}

.table.tnx-table thead th:nth-child(5),
.table.tnx-table tbody td:nth-child(5) {
    width: 12%; /* Reduced from 15% */
}

/* Icon font classes */
.ti {
    font-style: normal;
    font-weight: normal;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
}

.ti-more-alt::before {
    content: "⋯";
}

.ti-eye::before {
    content: "👁";
}

.ti-marker::before {
    content: "✏";
}

.ti-trash::before {
    content: "🗑";
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .d-none.d-md-inline-flex {
        display: none !important;
    }
    
    .dropdown-content {
        right: 0;
        left: auto;
        min-width: 140px;
    }
    
    .dropdown-content-top-left {
        left: auto;
        right: 0;
    }
    
    .table.tnx-table thead th:nth-child(6),
    .table.tnx-table tbody td:nth-child(6) {
        min-width: 60px;
        width: 8%;
    }
    
    .table.tnx-table thead th:nth-child(7),
    .table.tnx-table tbody td:nth-child(7) {
        min-width: 50px;
        width: 8%;
    }
}

@media (max-width: 480px) {
    .dt-type-md {
        display: none;
    }
    
    .btn-light-alt {
        padding: 4px 6px;
    }
    
    .dropdown-content {
        min-width: 120px;
        font-size: 12px;
    }
    
    .dropdown-list li a {
        padding: 6px 12px;
        font-size: 12px;
    }
}


/* Action buttons container */
.list-icon-function {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 8px 0;
}

    /* Individual action buttons */
    .list-icon-function .tf-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 11px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
        border: none;
        cursor: pointer;
        min-width: 60px;
        text-align: center;
    }

        /* Edit button - Green */
        .list-icon-function .tf-button.style-2 {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
            border: 1px solid rgba(34, 197, 94, 0.2);
        }

            .list-icon-function .tf-button.style-2:hover {
                background: #22c55e;
                color: var(--White);
                transform: translateY(-1px);
                box-shadow: 0 4px 8px rgba(34, 197, 94, 0.3);
            }

        /* Details button - Orange */
        .list-icon-function .tf-button.style-3 {
            background: rgba(255, 116, 51, 0.1);
            color: #ff7433;
            border: 1px solid rgba(255, 116, 51, 0.2);
        }

            .list-icon-function .tf-button.style-3:hover {
                background: #ff7433;
                color: var(--White);
                transform: translateY(-1px);
                box-shadow: 0 4px 8px rgba(255, 116, 51, 0.3);
            }

        /* Delete button - Red */
        .list-icon-function .tf-button.style-default {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            border: 1px solid rgba(239, 68, 68, 0.2);
        }

            .list-icon-function .tf-button.style-default:hover {
                background: #ef4444;
                color: var(--White);
                transform: translateY(-1px);
                box-shadow: 0 4px 8px rgba(239, 68, 68, 0.3);
            }

/* Mobile responsiveness */
@media (max-width: 768px) {
    .list-icon-function {
        gap: 4px;
    }

        .list-icon-function .tf-button {
            padding: 4px 8px;
            font-size: 10px;
            min-width: 50px;
        }
}

/* Transaction Form Professional Styling - Scoped */
.transaction-form-container .wg-box.style-1 {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 32px;
    margin: 0 auto;
    max-width: 800px;
}

.transaction-form-container .form-horizontal.form-style-1 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.transaction-form-container .title {
    margin-bottom: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

    .transaction-form-container .title .label-01.text-Black {
        color: #1f2937;
        font-size: 24px;
        font-weight: 700;
        margin: 0;
        letter-spacing: -0.025em;
    }

.transaction-form-container .line {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
    margin: 0 0 24px 0;
}

/* Form Groups */
.transaction-form-container .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

    .transaction-form-container .form-group:last-child {
        margin-top: 32px;
        padding-top: 24px;
        border-top: 1px solid #f1f5f9;
    }

/* Labels */
.transaction-form-container .input-item-label.control-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    text-transform: capitalize;
    letter-spacing: 0.025em;
}

/* Input Fields */
.transaction-form-container .input-bordered.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

    .transaction-form-container .input-bordered.form-control:focus {
        outline: none;
        border-color: var(--Primary, #161326);
        box-shadow: 0 0 0 3px rgba(22, 19, 38, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-1px);
    }

    .transaction-form-container .input-bordered.form-control:hover {
        border-color: #d1d5db;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

/* Select Dropdowns */
.transaction-form-container .tf-select.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    background: #ffffff url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>') no-repeat right 12px center;
    background-size: 12px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

    .transaction-form-container .tf-select.form-control:focus {
        outline: none;
        border-color: var(--Primary, #161326);
        box-shadow: 0 0 0 3px rgba(22, 19, 38, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-1px);
    }

    .transaction-form-container .tf-select.form-control:hover {
        border-color: #d1d5db;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

/* Submit Button */
.transaction-form-container .tf-button.style-4 {
    background: linear-gradient(135deg, var(--Primary, #161326) 0%, #2a1f3d 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.025em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(22, 19, 38, 0.3);
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

    .transaction-form-container .tf-button.style-4::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s;
    }

    .transaction-form-container .tf-button.style-4:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(22, 19, 38, 0.4);
        background: linear-gradient(135deg, #1a1530 0%, #332244 100%);
    }

        .transaction-form-container .tf-button.style-4:hover::before {
            left: 100%;
        }

    .transaction-form-container .tf-button.style-4:active {
        transform: translateY(0);
        box-shadow: 0 4px 12px rgba(22, 19, 38, 0.3);
    }

/* Validation Messages */
.transaction-form-container .text-danger {
    color: #ef4444;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

    

.transaction-form-container .note.note-danger {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 24px;
    color: #dc2626;
}

    .transaction-form-container .note.note-danger ul {
        margin: 0;
        padding-left: 20px;
    }

/* Form Actions */
.transaction-form-container .form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 0 0 0;
    margin-top: 24px;
    border-top: 1px solid #f1f5f9;
}

/* Secondary Button Style */
.transaction-form-container .tf-button.style-secondary {
    background: #f8fafc;
    color: #475569;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

    .transaction-form-container .tf-button.style-secondary::before {
        content: '←';
        font-size: 16px;
        margin-right: 4px;
        transition: transform 0.3s ease;
    }

    .transaction-form-container .tf-button.style-secondary:hover {
        background: #e2e8f0;
        color: #334155;
        border-color: #cbd5e1;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-decoration: none;
    }

        .transaction-form-container .tf-button.style-secondary:hover::before {
            transform: translateX(-2px);
        }

    .transaction-form-container .tf-button.style-secondary:active {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .transaction-form-container .wg-box.style-1 {
        padding: 24px 16px;
        margin: 0 16px;
    }

    .transaction-form-container .title .label-01.text-Black {
        font-size: 20px;
    }

    .transaction-form-container .form-horizontal.form-style-1 {
        gap: 20px;
    }

    .transaction-form-container .input-bordered.form-control,
    .transaction-form-container .tf-select.form-control {
        padding: 12px 14px;
        font-size: 14px;
    }

    .transaction-form-container .tf-button.style-4 {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }

    .transaction-form-container .form-actions {
        padding: 20px 0 0 0;
        margin-top: 20px;
    }

    .transaction-form-container .tf-button.style-secondary {
        width: 100%;
        padding: 14px 20px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .transaction-form-container .wg-box.style-1 {
        padding: 20px 12px;
        margin: 0 12px;
        border-radius: 12px;
    }

    .transaction-form-container .title .label-01.text-Black {
        font-size: 18px;
    }

    .transaction-form-container .input-bordered.form-control,
    .transaction-form-container .tf-select.form-control {
        padding: 10px 12px;
        font-size: 13px;
    }

    .transaction-form-container .tf-button.style-secondary {
        padding: 12px 16px;
        font-size: 13px;
        min-width: auto;
    }
}

/* Form Field States */
.transaction-form-container .form-control.input--required {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.05);
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

/* Loading State */
.transaction-form-container .tf-button.style-4:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

    .transaction-form-container .tf-button.style-4:disabled::before {
        display: none;
    }

/* Success State */
.transaction-form-container .form-control.success {
    border-color: #22c55e;
    background-color: rgba(34, 197, 94, 0.05);
}


/* Form Actions Container */
.form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 0 0 0;
    margin-top: 24px;
    border-top: 1px solid #f1f5f9;
}

/* Secondary Button Style */
.tf-button.style-secondary {
    background: linear-gradient(135deg, var(--Primary, #161326) 0%, #2a1f3d 100%);
    color: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

    /* Add back arrow icon */
    .tf-button.style-secondary::before {
        content: '←';
        font-size: 16px;
        margin-right: 4px;
        transition: transform 0.3s ease;
    }

    .tf-button.style-secondary:hover {
        background: #e2e8f0;
        color: #334155;
        border-color: #cbd5e1;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-decoration: none;
    }

        .tf-button.style-secondary:hover::before {
            transform: translateX(-2px);
        }

    .tf-button.style-secondary:active {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    /* Alternative dark style */
    .tf-button.style-secondary.dark {
        background: #374151;
        color: #f9fafb;
        border-color: #4b5563;
    }

        .tf-button.style-secondary.dark:hover {
            background: #4b5563;
            color: #ffffff;
            border-color: #6b7280;
        }

/* Responsive */
@media (max-width: 768px) {
    .form-actions {
        padding: 20px 0 0 0;
        margin-top: 20px;
    }

    .tf-button.style-secondary {
        width: 100%;
        padding: 14px 20px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .tf-button.style-secondary {
        padding: 12px 16px;
        font-size: 13px;
        min-width: auto;
    }
}

/* Integration with form */
.wg-box.style-1 .form-actions {
    margin-top: 32px;
    padding-top: 24px;
}

/* Alternative layout - if you want it next to submit button */
.form-actions.inline {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

    .form-actions.inline .tf-button.style-secondary {
        order: -1; /* Places back button before submit */
    }

/* Force visibility and proper display for mobile transaction table */
@media (max-width: 768px) {
    /* Ensure container doesn't cut off content */
    .wg-box.style-1 {
        padding: 16px 8px !important;
        overflow: visible !important;
    }

    /* Main scroll container - force visibility */
    .table-list-transaction {
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch;
        margin: 0 -8px;
        padding: 0 8px;
        display: block !important;
    }

        /* FORCE header to show */
        .table-list-transaction .list-transaction-head {
            display: flex !important;
            visibility: visible !important;
            opacity: 1 !important;
            min-width: 900px !important;
            width: 900px !important;
            padding: 12px !important;
            background: var(--Primary) !important;
            border-radius: 8px !important;
            margin-bottom: 12px !important;
            align-items: center !important;
            justify-content: space-between !important;
        }

            /* FORCE header text to show */
            .table-list-transaction .list-transaction-head > div {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                color: var(--White) !important;
                font-size: 11px !important;
                font-weight: 700 !important;
                text-transform: uppercase !important;
                padding: 8px 6px !important;
                white-space: nowrap !important;
                flex-shrink: 0 !important;
            }

                /* Set specific widths for header columns */
                .table-list-transaction .list-transaction-head > div:nth-child(1) {
                    width: 120px !important;
                }

                .table-list-transaction .list-transaction-head > div:nth-child(2) {
                    width: 100px !important;
                }

                .table-list-transaction .list-transaction-head > div:nth-child(3) {
                    width: 140px !important;
                }

                .table-list-transaction .list-transaction-head > div:nth-child(4) {
                    width: 120px !important;
                }

                .table-list-transaction .list-transaction-head > div:nth-child(5) {
                    width: 180px !important;
                }

                .table-list-transaction .list-transaction-head > div:nth-child(6) {
                    width: 100px !important;
                    text-align: center;
                }

                .table-list-transaction .list-transaction-head > div:nth-child(7) {
                    width: 140px !important;
                }

        /* FORCE table content to show */
        .table-list-transaction .list-transaction-content {
            display: table !important;
            min-width: 900px !important;
            width: 900px !important;
            table-layout: fixed !important;
        }

            .table-list-transaction .list-transaction-content tbody {
                display: table-row-group !important;
            }

                .table-list-transaction .list-transaction-content tbody tr {
                    display: table-row !important;
                    background: var(--Gainsboro) !important;
                    margin-bottom: 8px !important;
                }

                    .table-list-transaction .list-transaction-content tbody tr td {
                        display: table-cell !important;
                        padding: 10px 6px !important;
                        vertical-align: middle !important;
                        border: none !important;
                        white-space: nowrap !important;
                        overflow: hidden !important;
                        text-overflow: ellipsis !important;
                    }

                        /* Match table cell widths to header */
                        .table-list-transaction .list-transaction-content tbody tr td:nth-child(1) {
                            width: 120px !important;
                        }

                        .table-list-transaction .list-transaction-content tbody tr td:nth-child(2) {
                            width: 100px !important;
                        }

                        .table-list-transaction .list-transaction-content tbody tr td:nth-child(3) {
                            width: 140px !important;
                        }

                        .table-list-transaction .list-transaction-content tbody tr td:nth-child(4) {
                            width: 120px !important;
                        }

                        .table-list-transaction .list-transaction-content tbody tr td:nth-child(5) {
                            width: 180px !important;
                        }

                        .table-list-transaction .list-transaction-content tbody tr td:nth-child(6) {
                            width: 100px !important;
                        }

                        .table-list-transaction .list-transaction-content tbody tr td:nth-child(7) {
                            width: 140px !important;
                        }

                        /* FORCE date/time content to show */
                        .table-list-transaction .list-transaction-content tbody tr td:nth-child(3) {
                            font-size: 10px !important;
                            white-space: nowrap !important;
                        }

                            .table-list-transaction .list-transaction-content tbody tr td:nth-child(3) .body-text {
                                display: block !important;
                                visibility: visible !important;
                                opacity: 1 !important;
                                font-size: 10px !important;
                                white-space: nowrap !important;
                                overflow: hidden !important;
                                text-overflow: ellipsis !important;
                            }

    /* Fix other content */
    .wrap-image {
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
    }

        .wrap-image .body-title {
            font-size: 11px !important;
            font-weight: 700 !important;
        }

    .body-text {
        font-size: 10px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Status badges */
    .block-available,
    .block-pending,
    .block-not-available,
    .block-stock {
        font-size: 8px !important;
        padding: 2px 4px !important;
        white-space: nowrap !important;
        display: inline-block !important;
    }

    /* Action buttons */
    .list-icon-function {
        display: flex !important;
        gap: 2px !important;
    }

        .list-icon-function .tf-button {
            padding: 3px 5px !important;
            font-size: 7px !important;
            min-width: 30px !important;
        }

    /* Custom scrollbar */
    .table-list-transaction::-webkit-scrollbar {
        height: 8px;
    }

    .table-list-transaction::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 4px;
    }

    .table-list-transaction::-webkit-scrollbar-thumb {
        background: var(--Primary);
        border-radius: 4px;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .table-list-transaction .list-transaction-head,
    .table-list-transaction .list-transaction-content {
        min-width: 800px !important;
        width: 910px !important;
    }

        .table-list-transaction .list-transaction-head > div {
            font-size: 10px !important;
            padding: 6px 4px !important;
        }

        .table-list-transaction .list-transaction-content tbody tr td {
            padding: 8px 4px !important;
            font-size: 9px !important;
        }
}


/* Mobile-friendly create button */
@media (max-width: 767px) {
    .create-btn {
        margin-left: 5px !important;
    }

        .create-btn .tf-button {
            padding: 8px 12px !important;
            font-size: 11px !important;
            min-width: auto !important;
        }

            /* Show button on mobile */
            .create-btn .tf-button.d-md-flex.d-none {
                display: flex !important;
            }
}


/* Transaction Details Page - Unique Styling */
.transaction-details-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.transaction-details-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.transaction-details-box {
    padding: 32px;
}

/* Header */
.transaction-details-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 16px;
}

.transaction-details-title {
    color: #1f2937;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.025em;
}

.transaction-details-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.transaction-back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--Gainsboro, #f8f8f8);
    color: var(--Black, #161326);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

    .transaction-back-button:hover {
        background: var(--Black, #161326);
        color: var(--White, #ffffff);
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.transaction-back-mobile {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
}

.transaction-back-icon::before {
    content: '←';
    font-size: 16px;
    font-weight: bold;
}

/* Separator */
.transaction-details-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 20%, #e5e7eb 80%, transparent 100%);
    margin: 24px 0;
}

/* Summary Section */
.transaction-summary-section {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.transaction-summary-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 200px;
}

.transaction-summary-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.transaction-summary-value {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    word-break: break-all;
}

.transaction-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
    width: fit-content;
}

/* Info Section */
.transaction-info-heading {
    color: #1f2937;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
}

.transaction-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.transaction-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
}

    .transaction-info-row:hover {
        background-color: #f8fafc;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        border-radius: 8px;
    }

.transaction-info-row-last {
    border-bottom: none;
    padding-bottom: 0;
}

.transaction-info-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    min-width: 140px;
}

.transaction-info-value {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    text-align: right;
    word-break: break-all;
    max-width: 60%;
}

.transaction-amount {
    color: #059669;
    font-size: 16px;
}

.transaction-tokens {
    color: #7c3aed;
}

.transaction-wallet {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 6px;
    color: #475569;
}

/* Actions Section */
.transaction-actions-section {
    display: flex;
    justify-content: flex-end;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.transaction-edit-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--Black, #161326);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(22, 19, 38, 0.25);
}

    .transaction-edit-button::before {
        content: '✏';
        font-size: 14px;
    }

    .transaction-edit-button:hover {
        background: var(--YellowGreen, #c0faa0);
        color: var(--Black, #161326);
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(192, 250, 160, 0.4);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .transaction-details-box {
        padding: 24px 20px;
    }

    .transaction-details-title {
        font-size: 20px;
    }

    .transaction-back-desktop {
        display: none;
    }

    .transaction-back-mobile {
        display: inline-flex;
    }

    .transaction-summary-section {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .transaction-summary-item {
        min-width: auto;
    }

    .transaction-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-bottom: 12px;
    }

    .transaction-info-value {
        text-align: left;
        max-width: 100%;
    }

    .transaction-actions-section {
        justify-content: center;
    }

    .transaction-edit-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .transaction-details-page {
        padding: 0 16px;
    }

    .transaction-details-box {
        padding: 20px 16px;
    }

    .transaction-details-header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .transaction-details-title {
        font-size: 18px;
        text-align: center;
    }

    .transaction-summary-section {
        padding: 16px;
        gap: 12px;
    }

    .transaction-wallet {
        font-size: 11px;
        padding: 3px 6px;
    }
}


/* Transaction Delete Page - Unique Styling */
.transaction-delete-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.transaction-delete-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.transaction-delete-box {
    padding: 32px;
}

/* Header */
.transaction-delete-header {
    margin-bottom: 8px;
}

.transaction-delete-title {
    color: #dc2626;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-spacing: -0.025em;
}

.transaction-delete-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    color: #dc2626;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.transaction-warning-icon {
    font-size: 18px;
    color: #dc2626;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Separator */
.transaction-delete-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 20%, #e5e7eb 80%, transparent 100%);
    margin: 24px 0;
}

/* Details Section */
.transaction-delete-details {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.transaction-delete-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
    gap: 20px;
}

.transaction-delete-row-last {
    border-bottom: none;
    padding-bottom: 0;
}

.transaction-delete-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    min-width: 140px;
    margin: 0;
    flex-shrink: 0;
}

.transaction-delete-value {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    text-align: right;
    word-break: break-all;
    margin: 0;
    flex: 1;
}

.transaction-delete-amount {
    color: #dc2626;
    font-size: 16px;
    font-weight: 700;
}

.transaction-delete-tokens {
    color: #7c3aed;
    font-weight: 700;
}

.transaction-delete-wallet {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    background: #ffffff;
    padding: 6px 10px;
    border-radius: 8px;
    color: #475569;
    border: 1px solid #e5e7eb;
}

.transaction-delete-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Actions Section */
.transaction-delete-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.transaction-delete-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    letter-spacing: 0.025em;
}

    .transaction-delete-button::before {
        content: '🗑';
        font-size: 14px;
    }

    .transaction-delete-button:hover {
        background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    }

    .transaction-delete-button:active {
        transform: translateY(0);
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    }

.transaction-cancel-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f8fafc;
    color: #475569;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .transaction-cancel-button::before {
        content: '←';
        font-size: 16px;
        font-weight: bold;
    }

    .transaction-cancel-button:hover {
        background: #e2e8f0;
        color: #334155;
        border-color: #cbd5e1;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-decoration: none;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .transaction-delete-box {
        padding: 24px 20px;
    }

    .transaction-delete-title {
        font-size: 20px;
    }

    .transaction-delete-details {
        padding: 20px;
    }

    .transaction-delete-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 0;
    }

    .transaction-delete-label {
        min-width: auto;
    }

    .transaction-delete-value {
        text-align: left;
    }

    .transaction-delete-actions {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 12px;
    }

    .transaction-delete-button,
    .transaction-cancel-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .transaction-delete-page {
        padding: 0 16px;
    }

    .transaction-delete-box {
        padding: 20px 16px;
    }

    .transaction-delete-title {
        font-size: 18px;
    }

    .transaction-delete-details {
        padding: 16px;
    }

    .transaction-delete-wallet {
        font-size: 11px;
        padding: 4px 8px;
    }

    .transaction-delete-warning {
        padding: 12px;
        font-size: 13px;
    }
}

/* Contribution Amount - Professional Styling */
.contribution-amount-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    margin-bottom: 24px;
}

.contribution-amount-card {
    padding: 40px;
}

/* Header */
.contribution-amount-header {
    margin-bottom: 24px;
    text-align: center;
}

.contribution-amount-subtitle {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--Primary, #161326) 0%, #2a1f3d 100%);
    color: #ffffff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.contribution-amount-title {
    color: #1f2937;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contribution-amount-description {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

    .contribution-amount-description p {
        color: #6b7280;
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
    }

/* Calculator Wrapper */
.contribution-calculator-wrapper {
    margin-bottom: 40px;
}

.contribution-calculator-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

    .contribution-calculator-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--Primary, #161326), var(--YellowGreen, #c0faa0));
    }

.contribution-calculator-header {
    text-align: center;
    margin-bottom: 32px;
}

.contribution-calculator-title {
    color: #1f2937;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.contribution-calculator-subtitle {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

/* Calculator Main */
.contribution-calculator-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contribution-input-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contribution-input-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .contribution-input-group:focus-within {
        border-color: var(--Primary, #161326);
        box-shadow: 0 0 0 3px rgba(22, 19, 38, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-1px);
    }

.contribution-amount-input {
    border: none;
    outline: none;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    background: transparent;
    width: 120px;
    text-align: center;
}

.contribution-currency-selector {
    border-left: 1px solid #e5e7eb;
}

.contribution-currency-button {
    display: block;
    padding: 16px 20px;
    background: #f8fafc;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .contribution-currency-button:hover {
        background: #e2e8f0;
        color: #334155;
        text-decoration: none;
    }

.contribution-equals-sign {
    font-size: 24px;
    font-weight: 700;
    color: #6b7280;
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contribution-result-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contribution-token-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--Primary, #161326);
    margin: 0;
}

.contribution-token-symbol {
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
}

.contribution-rate-info {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    text-align: center;
    width: 55%;
}

.contribution-rate-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.contribution-rate-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.contribution-rate-value {
    font-size: 14px;
    color: #1f2937;
    font-weight: 600;
}

.contribution-action-button {
    text-align: center;
}

.contribution-buy-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--Primary, #161326) 0%, #2a1f3d 100%) !important;
    color: #ffffff !important;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(22, 19, 38, 0.3) !important;
    position: relative;
    overflow: hidden;
}

    .contribution-buy-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
        transition: left 0.6s;
    }

    .contribution-buy-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(22, 19, 38, 0.4);
        background: linear-gradient(135deg, #1a1530 0%, #332244 100%) !important;
    }

        .contribution-buy-button:hover::before {
            left: 100%;
        }

.contribution-buy-icon::before {
    content: '→';
    font-size: 16px;
    font-weight: bold;
}

.contribution-calculator-note {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
    padding: 12px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    color: #3b82f6;
    font-size: 13px;
}

.contribution-note-icon::before {
    content: 'ℹ';
    font-size: 14px;
}

/* Overview Section */
.contribution-overview-section {
    margin-bottom: 32px;
}

.contribution-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.contribution-overview-item {
    text-align: center;
    padding: 16px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

    .contribution-overview-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.contribution-overview-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.contribution-overview-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.contribution-presale-value {
    color: #7c3aed;
}

.contribution-softcap-value {
    color: #059669;
}

.contribution-hardcap-value {
    color: var(--Primary, #161326);
}

.contribution-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    color: #f59e0b;
}

.contribution-disclaimer-icon::before {
    content: '⚠';
    font-size: 16px;
}

.contribution-disclaimer-text {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Payment Section */
.contribution-payment-section {
    margin-bottom: 32px;
}

.contribution-payment-button-wrapper {
    text-align: center;
}

.contribution-payment-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #f8fafc !important;
    color: #475569 !important;
    text-decoration: none;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 240px;
}

    .contribution-payment-button:hover {
        background: #e2e8f0;
        color: #334155;
        border-color: #cbd5e1;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-decoration: none;
    }

.contribution-wallet-icon::before {
    content: '💳';
    font-size: 16px;
}

/* Final Note */
.contribution-final-note {
    border-top: 1px solid #f1f5f9;
    padding-top: 24px;
}

.contribution-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    color: #059669;
}

.contribution-info-icon::before {
    content: 'ℹ';
    font-size: 16px;
    margin-top: 2px;
}

.contribution-info-text {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contribution-amount-card {
        padding: 24px 20px;
    }

    .contribution-amount-title {
        font-size: 24px;
    }

    .contribution-calculator-card {
        padding: 24px 20px;
    }

    .contribution-input-section {
        flex-direction: column;
        gap: 12px;
    }

    .contribution-input-group {
        width: 100%;
        max-width: 280px;
    }

    .contribution-amount-input {
        width: 100px;
    }

    .contribution-overview-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .contribution-buy-button,
    .contribution-payment-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contribution-amount-card {
        padding: 20px 16px;
    }

    .contribution-amount-title {
        font-size: 20px;
    }

    .contribution-calculator-card {
        padding: 20px 16px;
    }

    .contribution-amount-input {
        width: 80px;
        font-size: 16px;
    }

    .contribution-token-amount {
        font-size: 24px;
    }
}


/* Wallet Modal - Professional Styling */
.wallet-modal-wrapper {
    z-index: 1060;
}

.wallet-modal-dialog {
    max-width: 600px;
    margin: 1.75rem auto;
}

.wallet-modal-content {
    background: #ffffff;
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

    .wallet-modal-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #fbbd18, #f59e0b);
    }

.wallet-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
}

    .wallet-modal-close:hover {
        background: rgba(0, 0, 0, 0.1);
        color: #374151;
        text-decoration: none;
        transform: rotate(90deg);
    }

.wallet-close-icon {
    font-size: 18px;
}

.wallet-modal-body {
    padding: 40px;
    padding-top: 50px;
}

.wallet-modal-title {
    color: #1f2937;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 20px 0;
    text-align: center;
    letter-spacing: -0.025em;
}

.wallet-modal-description {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
    text-align: center;
    padding: 0 10px;
}

.wallet-token-link {
    color: #fbbd18;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

    .wallet-token-link:hover {
        color: #f59e0b;
        text-decoration: none;
    }

.wallet-important-text {
    color: #dc2626;
    font-weight: 700;
}

.wallet-modal-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wallet-form-row {
    margin: 0;
}

.wallet-select-column {
    padding: 0;
}

.wallet-input-group,
.wallet-address-group {
    margin-bottom: 0;
}

.wallet-input-label,
.wallet-address-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.wallet-select-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
}

    .wallet-select-input:focus {
        outline: none;
        border-color: #fbbd18;
        box-shadow: 0 0 0 3px rgba(251, 189, 24, 0.1);
    }

.wallet-address-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

    .wallet-address-input:focus {
        outline: none;
        border-color: #fbbd18;
        box-shadow: 0 0 0 3px rgba(251, 189, 24, 0.1);
        transform: translateY(-1px);
    }

    .wallet-address-input:valid {
        border-color: #22c55e;
    }

    .wallet-address-input:invalid:not(:placeholder-shown) {
        border-color: #ef4444;
    }

.wallet-message-area {
    margin-top: 8px;
    min-height: 20px;
    font-size: 13px;
}

.wallet-input-note {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
    font-style: italic;
}

.wallet-warning-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    color: #dc2626;
    margin: 0;
}

.wallet-warning-icon {
    font-size: 18px;
    color: #dc2626;
    margin-top: 2px;
    flex-shrink: 0;
}

.wallet-warning-text {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.wallet-form-gap {
    height: 24px;
}

.wallet-form-actions {
    align-items: center;
    gap: 16px;
}

.wallet-add-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #fbbd18 0%, #f59e0b 100%) !important;
    border: none !important;
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 189, 24, 0.3);
    text-transform: none;
}

    .wallet-add-button::before {
        content: '💳';
        font-size: 16px;
    }

    .wallet-add-button:hover {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(251, 189, 24, 0.4);
        color: #ffffff;
    }

    .wallet-add-button:active {
        transform: translateY(0);
        box-shadow: 0 4px 12px rgba(251, 189, 24, 0.3);
    }

.wallet-mobile-gap {
    height: 16px;
}

.wallet-success-message {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #22c55e;
    font-size: 14px;
    font-weight: 600;
}

.wallet-success-icon {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contribution-rate-info {
        background: #ffffff;
        border-radius: 12px;
        padding: 16px;
        border: 1px solid #e5e7eb;
        text-align: center;
        width: 100%;
    }

    .wallet-modal-body {
        padding: 24px 20px;
        padding-top: 40px;
    }

    .wallet-modal-title {
        font-size: 22px;
    }

    .wallet-modal-description {
        font-size: 14px;
        padding: 0;
    }

    .wallet-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .wallet-add-button {
        width: 100%;
        justify-content: center;
    }

    .wallet-success-message {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .wallet-modal-body {
        padding: 20px 16px;
        padding-top: 36px;
    }

    .wallet-modal-title {
        font-size: 20px;
    }

    .wallet-address-input {
        font-size: 13px;
        padding: 12px 14px;
    }

    .wallet-warning-note {
        padding: 16px;
    }

    .wallet-warning-text {
        font-size: 12px;
    }
}

/* Animation for modal appearance */
.wallet-modal-wrapper.fade .wallet-modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

.wallet-modal-wrapper.show .wallet-modal-dialog {
    transform: translate(0, 0);
}

.wallet-close-icon {
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    color: inherit;
}

.card-sub-title {
    font-size: 10px;
    font-weight: bold;
}

/* Profile Page - Professional Styling */
.profile-page-wrapper {
    background: #f8fafc;
    min-height: 100vh;
    padding: 40px 0;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.profile-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.profile-main-content {
    flex: 1;
    min-width: 0;
}

/* Card Styling */
.profile-content-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.profile-card-inner {
    padding: 40px;
}

.profile-card-header {
    margin-bottom: 32px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

    .profile-card-header::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, var(--Primary, #161326), var(--YellowGreen, #c0faa0));
        border-radius: 1px;
    }

.profile-card-title {
    color: #1f2937;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.025em;
}

/* Navigation Tabs */
.profile-nav-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.profile-nav-item {
    margin: 0;
}

.profile-nav-link {
    display: block;
    padding: 16px 24px;
    color: #6b7280;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

    .profile-nav-link:hover {
        color: var(--Primary, #161326);
        text-decoration: none;
        background: rgba(22, 19, 38, 0.05);
    }

    .profile-nav-link.profile-nav-active {
        color: var(--Primary, #161326);
        border-bottom-color: var(--Primary, #161326);
        background: rgba(22, 19, 38, 0.05);
    }

/* Tab Content */
.profile-tab-content {
    min-height: 400px;
}

.profile-tab-pane {
    display: none;
}

    .profile-tab-pane.show {
        display: block;
    }

/* Forms */
.profile-personal-form,
.profile-password-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.profile-form-col-half {
    display: flex;
    flex-direction: column;
}

.profile-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.profile-input-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0;
}

.profile-input-field {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

    .profile-input-field:focus {
        outline: none;
        border-color: var(--Primary, #161326);
        box-shadow: 0 0 0 3px rgba(22, 19, 38, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-1px);
    }

    .profile-input-field:hover {
        border-color: #d1d5db;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .profile-input-field.input--required {
        border-color: #ef4444;
        background-color: rgba(239, 68, 68, 0.05);
        animation: profileShake 0.3s ease-in-out;
    }

@keyframes profileShake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

.profile-validation-message {
    font-size: 12px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .profile-validation-message::before {
        content: '⚠';
        font-size: 14px;
    }

/* Password Note */
.profile-password-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    color: #3b82f6;
    margin: 0;
}

.profile-note-icon {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.profile-note-text {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Form Actions */
.profile-form-gap {
    height: 16px;
}

.profile-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.profile-update-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--Primary, #161326) 0%, #2a1f3d 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(22, 19, 38, 0.25);
}

    .profile-update-button::before {
        content: '💾';
        font-size: 14px;
    }

    .profile-update-button:hover {
        background: linear-gradient(135deg, #1a1530 0%, #332244 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(22, 19, 38, 0.35);
        color: #ffffff;
    }

.profile-success-message {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #22c55e;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .profile-success-message.opac {
        opacity: 1;
    }

.profile-success-icon {
    font-size: 16px;
}

.profile-mobile-gap {
    height: 16px;
    display: none;
}

.profile-ajax-response {
    min-height: 20px;
    display: flex;
    align-items: center;
}

/* Sidebar */
.profile-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.profile-kyc-section {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.profile-kyc-inner {
    padding: 24px;
}

.profile-kyc-title {
    color: #1f2937;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.profile-kyc-description {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.profile-kyc-status {
    color: #f59e0b;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.profile-kyc-button {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

    .profile-kyc-button:hover {
        background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
        text-decoration: none;
        color: #ffffff;
    }

.profile-kyc-alert {
    font-size: 12px;
    text-align: center;
    margin: 0;
    color: #dc2626;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .profile-row {
        flex-direction: column;
    }

    .profile-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .profile-container {
        padding: 0 16px;
    }

    .profile-card-inner {
        padding: 24px 20px;
    }

    .profile-card-title {
        font-size: 22px;
    }

    .profile-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .profile-nav-tabs {
        flex-wrap: wrap;
    }

    .profile-nav-link {
        padding: 12px 16px;
        font-size: 14px;
    }

    .profile-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .profile-update-button {
        width: 100%;
        justify-content: center;
    }

    .profile-mobile-gap {
        display: block;
    }

    .profile-success-message {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .profile-page-wrapper {
        padding: 20px 0;
    }

    .profile-container {
        padding: 0 12px;
    }

    .profile-card-inner {
        padding: 20px 16px;
    }

    .profile-card-title {
        font-size: 20px;
    }

    .profile-input-field {
        padding: 12px 14px;
        font-size: 14px;
    }

    .profile-kyc-inner {
        padding: 20px;
    }
}

/* Utility Classes for the noOpacity functionality */
.noOpacity {
    opacity: 0;
}

.opac {
    opacity: 1;
}

/* Users Table - Professional Styling */
.users-table-page {
    background: #f8fafc;
    min-height: 100vh;
    padding: 40px 0;
}

.users-table-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.users-table-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.users-table-inner {
    padding: 32px;
}

/* Header */
.users-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

    .users-table-header::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, var(--Primary, #161326), var(--YellowGreen, #c0faa0));
        border-radius: 1px;
    }

.users-table-title {
    color: #1f2937;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.025em;
}

.users-table-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.users-add-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--Primary, #161326) 0%, #2a1f3d 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(22, 19, 38, 0.25);
}

    .users-add-button:hover {
        background: linear-gradient(135deg, #1a1530 0%, #332244 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(22, 19, 38, 0.35);
    }

.users-add-icon {
    font-size: 16px;
    font-weight: bold;
}

/* Table Wrapper */
.users-table-wrapper {
    /*    overflow-x: auto;*/
    border-radius: 16px !important;
    border: 1px solid #f1f5f9;
    background: var(--White);
    position: relative;
    z-index: 1;
}

/* Table Styling */
.users-data-table {
    width: 100%;
    min-width: 800px;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: visible !important;
}

.users-table-head {
    background: linear-gradient(135deg, var(--Primary, #161326) 0%, #2a1f3d 100%);
    border-radius: 16px 16px 0 0;
}

.users-header-row {
    border: none;
}

.users-header-cell {
    padding: 18px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--White);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    text-align: left;
    position: relative;
}

    .users-header-cell:first-child {
        border-radius: 16px 0 0 0;
    }

    .users-header-cell:last-child {
        border-radius: 0 16px 0 0;
    }

/* Column widths */
.users-name-header {
    width: 18%;
    min-width: 140px;
}

.users-email-header {
    width: 20%;
    min-width: 160px;
}

.users-promo-header {
    width: 12%;
    min-width: 100px;
}

.users-password-header {
    width: 15%;
    min-width: 120px;
}

.users-investment-header {
    width: 12%;
    min-width: 100px;
}

.users-balance-header {
    width: 12%;
    min-width: 100px;
}

.users-actions-header {
    width: 11%;
    min-width: 90px;
    text-align: center;
}

/* Table Body */
.users-table-body {
    background: var(--White);
}

    .users-table-body tr {
        border-bottom: 1px solid #f8fafc;
        transition: all 0.3s ease;
    }

        .users-table-body tr:hover {
            background: #f8fafc;
            transform: translateX(2px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .users-table-body tr:last-child {
            border-bottom: none;
        }

    .users-table-body td {
        padding: 5px;
        border: none;
/*        vertical-align: middle;*/
        font-size: 14px;
        color: #1f2937;
    }

/* Data Cell Styling */
.users-name-cell {
    font-weight: 600;
    color: #1f2937;
}

.users-email-cell {
    color: #6b7280;
    font-size: 13px;
    word-break: break-word;
}

.users-promo-cell {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 6px;
    color: #475569;
    display: inline-block;
}

.users-password-cell {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #6b7280;
}

.users-password-hidden {
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .users-password-hidden:hover {
        background: #e5e7eb;
    }

.users-investment-cell {
    font-weight: 600;
    color: #059669;
    text-align: left;
}

.users-balance-cell {
    font-weight: 600;
    color: #7c3aed;
    text-align: left;
}

/* Action Buttons */
.users-actions-cell {
    text-align: center;
}

.users-action-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.users-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    text-decoration: none;
}

    .users-action-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
        text-decoration: none;
    }

.users-edit-btn {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

    .users-edit-btn:hover {
        background: #22c55e;
        color: var(--White);
        border-color: #22c55e;
    }

.users-view-btn {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

    .users-view-btn:hover {
        background: #3b82f6;
        color: var(--White);
        border-color: #3b82f6;
    }

.users-delete-btn {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

    .users-delete-btn:hover {
        background: #ef4444;
        color: var(--White);
        border-color: #ef4444;
    }

/* Status Badges */
.users-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.users-status-active {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.users-status-inactive {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.2);
}

.users-status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Empty State */
.users-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.users-empty-icon {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.users-empty-title {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.users-empty-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* Loading State */
.users-loading-row {
    background: linear-gradient(90deg, #f1f5f9 25%, #e5e7eb 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: usersLoading 1.5s infinite;
}

@keyframes usersLoading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .users-table-container {
        padding: 0 16px;
    }

    .users-table-inner {
        padding: 24px 20px;
    }

    .users-table-header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .users-table-title {
        font-size: 24px;
        text-align: center;
    }

    .users-table-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .users-table-page {
        padding: 20px 0;
    }

    .users-table-container {
        padding: 0 12px;
    }

    .users-table-inner {
        padding: 20px 16px;
    }

    .users-table-title {
        font-size: 20px;
    }

    .users-data-table {
        min-width: 600px;
    }

    .users-header-cell,
    .users-table-body td {
        padding: 12px 10px;
        font-size: 12px;
    }

    .users-action-buttons {
        gap: 4px;
    }

    .users-action-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .users-table-wrapper {
        border-radius: 0 !important;
        border: 1px solid #f1f5f9;
        background: var(--White);
        overflow: visible !important;
    }

    .users-header-cell:first-child,
    .users-header-cell:last-child {
        border-radius: 0;
    }

    .users-data-table {
        min-width: 500px;
    }

    .users-header-cell,
    .users-table-body td {
        padding: 10px 8px;
        font-size: 11px;
    }
}

/* Custom Scrollbar for Table */
.users-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.users-table-wrapper::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.users-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--Primary, #161326);
    border-radius: 4px;
}

    .users-table-wrapper::-webkit-scrollbar-thumb:hover {
        background: #1a1530;
    }

/* Users Actions Dropdown - Professional Styling */
.users-actions-dropdown {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.users-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

    .users-dropdown-trigger:hover {
        background: #e2e8f0;
        border-color: #cbd5e1;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.users-dropdown-icon {
    font-size: 16px;
    color: #6b7280;
    font-weight: bold;
}

.users-data-row {
    position: relative;
    z-index: 1;
}

    .users-data-row:has(.users-dropdown-show) {
        z-index: 10000;
    }

    /* If :has() is not supported, use this alternative approach */
    .users-data-row.dropdown-active {
        z-index: 1000;
    }

.users-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    min-width: 160px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
    margin-top: 4px;
    overflow: visible;
}

    .users-dropdown-menu.users-dropdown-show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        z-index: 1001;
    }

.users-dropdown-list {
    padding: 8px 0;
    margin: 0;
    list-style: none;
}

.users-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    width: 100%;
    background: none;
    cursor: pointer;
}

    .users-dropdown-item:hover {
        background: #f3f4f6;
        color: #1f2937;
        text-decoration: none;
    }

.users-action-icon {
    font-size: 14px;
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.users-action-text {
    flex: 1;
}

/* Specific action styling */
.users-view-action:hover {
    background: rgba(59, 130, 246, 0.05);
    color: #3b82f6;
}

.users-edit-action:hover {
    background: rgba(34, 197, 94, 0.05);
    color: #22c55e;
}

.users-delete-action:hover {
    background: rgba(239, 68, 68, 0.05);
    color: #ef4444;
}

/* Arrow indicator for dropdown */
.users-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .users-dropdown-menu {
        right: -8px;
        min-width: 140px;
    }

    .users-dropdown-item {
        padding: 8px 12px;
        font-size: 13px;
    }

    .users-dropdown-trigger {
        width: 28px;
        height: 28px;
    }

    .users-dropdown-icon {
        font-size: 14px;
    }
}

/* Password reveal functionality */
.users-password-hidden {
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: monospace;
    font-size: 12px;
    color: #6b7280;
}

    .users-password-hidden:hover {
        background: #e5e7eb;
        color: #374151;
    }


/* Authentication Page - Professional Styling */
.auth-body-wrapper {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.auth-main-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    min-height: 700px;
}

/* Image Section */
.auth-image-section {
    position: relative;
    background: linear-gradient(135deg, var(--Primary, #161326) 0%, #2a1f3d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.auth-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 13, 20, 0.36);
    z-index: 2;
}

.auth-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.auth-image-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 40px;
}

.auth-image-title {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 16px 0;
    letter-spacing: -0.025em;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-image-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

/* Form Section */
.auth-form-section {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.auth-header {
    margin-bottom: 40px;
    text-align: center;
    margin-top: 20px;
}

.auth-logo {
    display: inline-block;
}

.auth-logo-link {
    display: block;
    transition: transform 0.3s ease;
}

    .auth-logo-link:hover {
        transform: scale(1.05);
        text-decoration: none;
    }

.auth-logo-image {
    max-height: 60px;
    width: auto;
}

/* Heading */
.auth-heading {
    text-align: center;
    margin-bottom: 0px;
}

.auth-welcome-title {
    color: #1f2937;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px 0;
    letter-spacing: -0.025em;
}

.auth-welcome-subtitle {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Form */
.auth-form-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.auth-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.auth-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.auth-input-field {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

    .auth-input-field:focus {
        outline: none;
        border-color: var(--Primary, #161326);
        box-shadow: 0 0 0 3px rgba(22, 19, 38, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-1px);
    }

    .auth-input-field:hover {
        border-color: #d1d5db;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .auth-input-field::placeholder {
        color: #9ca3af;
        font-weight: 400;
    }

.auth-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.auth-email-icon,
.auth-password-icon {
    font-size: 18px;
    color: #6b7280;
    transition: color 0.3s ease;
}

.auth-input-field:focus + .auth-input-icon .auth-email-icon,
.auth-input-field:focus + .auth-input-icon .auth-password-icon {
    color: var(--Primary, #161326);
}

.auth-error-message {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

    .auth-error-message::before {
        content: '⚠';
        font-size: 14px;
    }

/* Buttons */
.auth-button-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
}

.auth-login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--Primary, #161326) 0%, #2a1f3d 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(22, 19, 38, 0.3);
    position: relative;
    overflow: hidden;
}

    .auth-login-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s;
    }

    .auth-login-button:hover {
        background: linear-gradient(135deg, #1a1530 0%, #332244 100%);
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(22, 19, 38, 0.4);
    }

        .auth-login-button:hover::before {
            left: 100%;
        }

.auth-button-text {
    flex: 1;
}

.auth-button-icon {
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.auth-login-button:hover .auth-button-icon {
    transform: translateX(4px);
}

.auth-signup-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    color: var(--Primary, #161326);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .auth-signup-button:hover {
        background: #f8fafc;
        border-color: var(--Primary, #161326);
        color: var(--Primary, #161326);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-decoration: none;
    }

.auth-general-error {
    text-align: center;
    font-size: 14px;
    margin-top: 8px;
}

/* Forgot Password */
.auth-forgot-section {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.auth-forgot-link {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .auth-forgot-link:hover {
        color: var(--Primary, #161326);
        text-decoration: underline;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .auth-image-section {
        display: none;
    }

    .auth-form-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .auth-main-wrapper {
        padding: 16px;
    }

    .auth-container {
        border-radius: 16px;
        max-width: 400px;
    }

    .auth-form-section {
        padding: 32px 24px;
    }

    .auth-welcome-title {
        font-size: 28px;
    }

    .auth-welcome-subtitle {
        font-size: 15px;
    }

    .auth-image-title {
        font-size: 28px;
    }

    .auth-image-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .auth-main-wrapper {
        padding: 12px;
    }

    .auth-container {
        border-radius: 12px;
        max-width: 350px;
    }

    .auth-form-section {
        padding: 24px 20px;
    }

    .auth-welcome-title {
        font-size: 24px;
    }

    .auth-welcome-subtitle {
        font-size: 14px;
    }

    .auth-input-field {
        padding: 14px 16px 14px 44px;
        font-size: 15px;
    }

    .auth-login-button {
        padding: 14px 20px;
        font-size: 15px;
    }

    .auth-signup-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Animation for form appearance */
.auth-login-form {
    animation: authFadeInUp 0.6s ease-out;
}

@keyframes authFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus states for accessibility */
.auth-login-button:focus,
.auth-signup-button:focus,
.auth-forgot-link:focus {
    outline: 2px solid var(--Primary, #161326);
    outline-offset: 2px;
}

/* Login Form Input Styling */
.sign-in-body .form-group {
    margin-bottom: 0px;
    position: relative;
}

.sign-in-body .form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
    height: 60px;
}

    .sign-in-body .form-control:focus {
        outline: none;
        border-color: #161326;
        box-shadow: 0 0 0 3px rgba(22, 19, 38, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-1px);
        background: #ffffff;
    }

    .sign-in-body .form-control:hover {
        border-color: #d1d5db;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .sign-in-body .form-control::placeholder {
        color: #9ca3af;
        font-weight: 400;
    }

    /* Remove yellow autofill background */
    .sign-in-body .form-control:-webkit-autofill,
    .sign-in-body .form-control:-webkit-autofill:hover,
    .sign-in-body .form-control:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
        -webkit-text-fill-color: #1f2937 !important;
        transition: background-color 5000s ease-in-out 0s;
    }

/* Error styling */
.sign-in-body .text-danger {
    font-size: 13px;
    color: #ef4444;
    margin-top: 6px;
    display: block;
}

/* Button styling */
.sign-in-body .btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.sign-in-body #loginButton {
    background: linear-gradient(135deg, #161326 0%, #2a1f3d 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(22, 19, 38, 0.25);
    margin-right: 12px;
}

    .sign-in-body #loginButton:hover {
        background: linear-gradient(135deg, #1a1530 0%, #332244 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(22, 19, 38, 0.35);
    }

.sign-in-body .btn4 {
    background: transparent;
    color: #161326;
    border: 2px solid #e5e7eb;
}

    .sign-in-body .btn4:hover {
        background: #f8fafc;
        border-color: #161326;
        color: #161326;
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

/* Form group with buttons */
.sign-in-body .form-group:last-of-type {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Forgot password link */
.sign-in-body .cp-body > a {
    color: #6b7280;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 16px;
}

    .sign-in-body .cp-body > a:hover {
        color: #161326;
        text-decoration: underline;
    }

/* General error styling */
.sign-in-body #generalError {
    margin-top: 12px;
    padding: 12px;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sign-in-body .form-group:last-of-type {
        flex-direction: column;
    }

    .sign-in-body .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
    }

    .sign-in-body #loginButton {
        margin-bottom: 12px;
    }
}

.sign-in-body {
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}



.signup-image-section-bg {
    background-image: var(--signup-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
}

    .signup-image-section-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .signup-image-section-bg .signup-image-content {
        position: relative;
        z-index: 2;
    }

.sign-in-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 13, 20, 0.78); /* Dark overlay */
    z-index: -1;
}

/* Ultra-Compact Signup - No Scroll */
.signup-body-wrapper {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.signup-main-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.signup-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    height: 700px;
    max-height: 700px;
}

/* Image Section */
.signup-image-section {
    position: relative;
    background: linear-gradient(135deg, var(--Primary, #161326) 0%, #2a1f3d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.signup-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 13, 20, 0.36);
    z-index: 2;
}

.signup-background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.signup-image-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.signup-image-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px 0;
    letter-spacing: -0.025em;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signup-image-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
    line-height: 1.3;
}

/* Ultra-Compact Form Section */
.signup-form-section {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    overflow-x: scroll;
}

.signup-header {
    margin-bottom: 12px;
    text-align: center;
}

.signup-logo-image {
    max-height: 60px;
    width: auto;
}

.signup-heading {
    text-align: center;
    margin-bottom: 18px;
}

.signup-welcome-title {
    color: #1f2937;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 4px 0;
    letter-spacing: -0.025em;
}

.signup-welcome-subtitle {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.3;
    margin: 0;
}

/* Ultra-Compact Form */
.signup-register-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.signup-input-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 0;
}

.signup-input-field {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.3s ease;
    height: 36px;
}

    .signup-input-field:focus {
        outline: none;
        border-color: var(--Primary, #161326);
        box-shadow: 0 0 0 2px rgba(22, 19, 38, 0.1);
    }

    .signup-input-field:hover {
        border-color: #d1d5db;
    }

    .signup-input-field::placeholder {
        color: #9ca3af;
        font-weight: 400;
        font-size: 12px;
    }

.signup-error-message {
    font-size: 10px;
    color: #ef4444;
    margin-top: 1px;
    line-height: 1.2;
}

/* Compact Password Row */
.signup-password-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

/* Ultra-Compact Button */
.signup-register-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--Primary, #161326) 0%, #2a1f3d 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(22, 19, 38, 0.25);
    height: 38px;
    margin-top: 4px;
}

    .signup-register-button:hover {
        background: linear-gradient(135deg, #1a1530 0%, #332244 100%);
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(22, 19, 38, 0.35);
    }

.signup-button-icon {
    font-size: 12px;
    font-weight: bold;
}

/* Ultra-Compact Sign in Section */
.signup-signin-section {
    text-align: center;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

    .signup-signin-section p {
        margin: 0;
        font-size: 14px;
        color: #6b7280;
    }

.signup-signin-link {
    color: var(--Primary, #161326);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .signup-signin-link:hover {
        text-decoration: underline;
    }

/* Override existing form styles */
.cp-container .form-part .form-control {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    height: 60px;
    transition: all 0.3s ease;
    width: 80%;
}

.cp-container .form-part .btn-primary {
    background: linear-gradient(135deg, #161326 0%, #2a1f3d 100%);
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    height: 38px;
    transition: all 0.3s ease;
}

/* Hide wrapper elements that add extra space */
.wrapper.login-page.style-2 {
    margin: 0;
    padding: 0;
}

.cp-container {
    margin: 0;
    padding: 0;
}

.form-part {
    margin: 0;
    padding: 0;
}

.cp-body {
    margin: 0;
    padding: 0;
}

/* Responsive - Single column on smaller screens */
@media (max-width: 768px) {
    .signup-container {
        grid-template-columns: 1fr;
        max-width: 350px;
        height: auto;
        max-height: 95vh;
    }

    .signup-image-section {
        display: none;
    }

    .signup-form-section {
        padding: 15px 20px;
    }

    .signup-password-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .signup-main-wrapper {
        padding: 5px;
    }

    .signup-container {
        max-width: 320px;
        border-radius: 12px;
    }

    .signup-form-section {
        padding: 12px 15px;
    }
}


.page-ath-heading {
    font-size:32px !important;

}

    .page-ath-heading span {
        font-size:16px !important;
    }


.verification-body-wrapper {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.verification-main-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.verification-container {
    max-width: 500px;
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    min-height: 500px;
}

/* Form Section */
.verification-form-section {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.verification-header {
    margin-bottom: 40px;
    text-align: center;
}

.verification-logo {
    display: inline-block;
}

.verification-logo-link {
    display: block;
    transition: transform 0.3s ease;
}

    .verification-logo-link:hover {
        transform: scale(1.05);
        text-decoration: none;
    }

.verification-logo-image {
    max-height: 60px;
    width: auto;
}

/* Heading */
.verification-heading {
    text-align: center;
    margin-bottom: 40px;
}

.verification-welcome-title {
    color: #1f2937;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px 0;
    letter-spacing: -0.025em;
}

.verification-welcome-subtitle {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Form */
.verification-form-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.verification-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.verification-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.verification-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-input-field {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 18px;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
    letter-spacing: 0.2em;
    font-weight: 600;
}

    .verification-input-field:focus {
        outline: none;
        border-color: #161326;
        box-shadow: 0 0 0 3px rgba(22, 19, 38, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-1px);
    }

    .verification-input-field:hover {
        border-color: #d1d5db;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .verification-input-field::placeholder {
        color: #9ca3af;
        font-weight: 400;
        letter-spacing: normal;
    }

.verification-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.verification-code-icon {
    font-size: 18px;
    color: #6b7280;
    transition: color 0.3s ease;
}

.verification-input-field:focus + .verification-input-icon .verification-code-icon {
    color: #161326;
}

.verification-error-message {
    font-size: 13px;
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.verification-input-field {
    height: 60px !important;
    border: 1px solid !important;
    border-color: #80808052 !important;
}
/* Buttons */
.verification-button-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
}

.verification-submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #161326 0%, #2a1f3d 100%) !important;
    color: #ffffff !important;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(22, 19, 38, 0.3);
    position: relative;
    overflow: hidden;
}

    .verification-submit-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
        transition: left 0.6s;
    }

    .verification-submit-button:hover {
        background: linear-gradient(135deg, #1a1530 0%, #332244 100%) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 12px 28px rgba(22, 19, 38, 0.4);
    }

        .verification-submit-button:hover::before {
            left: 100%;
        }

.verification-button-text {
    flex: 1;
}

.verification-button-icon {
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.verification-submit-button:hover .verification-button-icon {
    transform: translateX(4px) !important;
}

/* Back to Login Link */
.verification-back-section {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.verification-back-link {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .verification-back-link:hover {
        color: #161326;
        text-decoration: none;
    }

    .verification-back-link::before {
        content: '←';
        font-size: 16px;
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    .verification-back-link:hover::before {
        transform: translateX(-2px);
    }

/* Info Box */
.verification-info-box {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.verification-info-icon {
    font-size: 16px;
    color: #3b82f6;
    margin-top: 2px;
    flex-shrink: 0;
}

.verification-info-text {
    font-size: 14px;
    color: #3b82f6;
    line-height: 1.5;
    margin: 0;
}

/* Resend Section */
.verification-resend-section {
    text-align: center;
    margin-top: 20px;
}

.verification-resend-text {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 8px;
}

.verification-resend-button {
    background: transparent;
    color: #161326;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .verification-resend-button:hover {
        background: #f8fafc;
        border-color: #161326;
        color: #161326;
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .verification-main-wrapper {
        padding: 16px;
    }

    .verification-container {
        border-radius: 16px;
        max-width: 400px;
    }

    .verification-form-section {
        padding: 40px 30px;
    }

    .verification-welcome-title {
        font-size: 28px;
    }

    .verification-welcome-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .verification-main-wrapper {
        padding: 12px;
    }

    .verification-container {
        border-radius: 12px;
        max-width: 350px;
    }

    .verification-form-section {
        padding: 32px 24px;
    }

    .verification-welcome-title {
        font-size: 24px;
    }

    .verification-welcome-subtitle {
        font-size: 14px;
    }

    .verification-input-field {
        padding: 14px 16px 14px 44px;
        font-size: 16px;
    }

    .verification-submit-button {
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Animation for form appearance */
.verification-form {
    animation: verificationFadeInUp 0.6s ease-out;
}

@keyframes verificationFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus states for accessibility */
.verification-submit-button:focus,
.verification-resend-button:focus,
.verification-back-link:focus {
    outline: 2px solid #161326;
    outline-offset: 2px;
}

/* Input validation states */
.verification-input-field.error {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.05);
}

.verification-input-field.success {
    border-color: #22c55e;
    background-color: rgba(34, 197, 94, 0.05);
}

/* Loading state */
.verification-submit-button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

    .verification-submit-button:disabled::before {
        display: none;
    }

/* Hidden field styling */
input[type="hidden"] {
    display: none;
}

/* KYC Details Page - Professional Styling */
.kyc-details-page {
    background: #f8fafc;
    min-height: 100vh;
    padding: 40px 0;
}

.kyc-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.kyc-details-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    overflow: visible;
}

.kyc-card-innr {
    padding: 32px;
}

/* Header Section */
.kyc-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.kyc-card-head {
    overflow: visible;
    position: relative;
    z-index: 1;
}

    .kyc-card-head::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, var(--Primary), var(--YellowGreen));
        border-radius: 1px;
    }

.kyc-card-title {
    color: #1f2937;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.025em;
}

.kyc-actions-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kyc-back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--Gainsboro);
    color: var(--Black);
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

    .kyc-back-button:hover {
        background: var(--Black);
        color: var(--White);
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .kyc-back-button .fas {
        font-size: 14px;
    }

/* Mobile back button */
.kyc-back-mobile {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
}

/* Dropdown Actions */
.kyc-dropdown-wrapper {
    position: relative;
    z-index: 1;
}

    .kyc-dropdown-wrapper:hover,
    .kyc-dropdown-wrapper.active {
        z-index: 1000;
    }

.kyc-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--Primary);
    color: var(--White);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

    .kyc-dropdown-trigger:hover {
        background: var(--YellowGreen);
        color: var(--Primary);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(192, 250, 160, 0.4);
    }

.kyc-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--White);
    min-width: 160px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    padding: 8px 0;
    margin-top: 8px;
}

    .kyc-dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        z-index: 1001;
    }

.kyc-dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .kyc-dropdown-list li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 16px;
        color: #374151;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s ease;
    }

        .kyc-dropdown-list li a:hover {
            background: #f3f4f6;
            color: #1f2937;
            text-decoration: none;
        }

        .kyc-dropdown-list li a .ti {
            font-size: 16px;
            width: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

/* Overview Section */
.kyc-overview-section {
    margin-bottom: 32px;
}

.kyc-data-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    margin-bottom: 24px;
}

.kyc-detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

    .kyc-detail-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.kyc-detail-title {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.kyc-detail-info {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    word-break: break-all;
    margin: 0;
}

/* Status Badge */
.kyc-verification-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.kyc-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    min-width: 100px;
}

.kyc-status-approved {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.kyc-status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.kyc-status-rejected {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Information Sections */
.kyc-info-section {
    margin-bottom: 40px;
}

.kyc-section-title {
    color: #1f2937;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

    .kyc-section-title::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--Primary);
        border-radius: 1px;
    }

.kyc-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .kyc-details-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        border-bottom: 1px solid #f1f5f9;
        transition: background-color 0.2s ease;
    }

        .kyc-details-list li:hover {
            background-color: #f8fafc;
            margin: 0 -16px;
            padding-left: 16px;
            padding-right: 16px;
            border-radius: 8px;
        }

        .kyc-details-list li:last-child {
            border-bottom: none;
        }

.kyc-details-head {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    min-width: 150px;
    margin: 0;
}

.kyc-details-des {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    text-align: right;
    word-break: break-all;
    max-width: 60%;
    margin: 0;
}

/* Document Section */
.kyc-documents-section {
    margin-bottom: 40px;
}

.kyc-document-category {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.kyc-document-title {
    color: #1f2937;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.kyc-document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.kyc-document-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

    .kyc-document-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.kyc-document-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.kyc-document-preview {
    position: relative;
    width: 100%;
    height: 180px;
    background: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .kyc-document-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.kyc-document-placeholder {
    color: #9ca3af;
    font-size: 14px;
    text-align: center;
}

.kyc-document-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.kyc-document-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--Primary);
    color: var(--White);
    text-decoration: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .kyc-document-download:hover {
        background: var(--YellowGreen);
        color: var(--Primary);
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(192, 250, 160, 0.4);
    }

    .kyc-document-download .ti {
        font-size: 14px;
    }

/* Delete Button */
.kyc-delete-documents {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    text-decoration: none;
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 16px;
}

    .kyc-delete-documents:hover {
        background: #ef4444;
        color: var(--White);
        border-color: #ef4444;
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    }

    .kyc-delete-documents .ti {
        font-size: 16px;
    }

/* Questionnaire Section */
.kyc-questionnaire-section {
    margin-bottom: 40px;
}

.kyc-questionnaire-table {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.kyc-questionnaire-row {
    display: flex;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
}

    .kyc-questionnaire-row:hover {
        background-color: #f8fafc;
    }

    .kyc-questionnaire-row:last-child {
        border-bottom: none;
    }

.kyc-questionnaire-cell {
    padding: 16px 20px;
    flex: 1;
    display: flex;
    align-items: flex-start;
}

    .kyc-questionnaire-cell:first-child {
        background: #f8fafc;
        border-right: 1px solid #f1f5f9;
        font-weight: 600;
        color: #374151;
        flex: 0 0 40%;
    }

    .kyc-questionnaire-cell:last-child {
        color: #1f2937;
        flex: 0 0 60%;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .kyc-details-container {
        padding: 0 16px;
    }

    .kyc-card-innr {
        padding: 24px 20px;
    }

    .kyc-card-title {
        font-size: 24px;
    }

    .kyc-data-details {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
        padding: 20px;
    }

    .kyc-document-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .kyc-details-page {
        padding: 20px 0;
    }

    .kyc-details-container {
        padding: 0 12px;
    }

    .kyc-card-innr {
        padding: 20px 16px;
    }

    .kyc-card-head {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        text-align: center;
    }

    .kyc-card-title {
        font-size: 20px;
    }

    .kyc-back-desktop {
        display: none;
    }

    .kyc-back-mobile {
        display: inline-flex;
    }

    .kyc-data-details {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .kyc-details-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
    }

    .kyc-details-head {
        min-width: auto;
    }

    .kyc-details-des {
        text-align: left;
        max-width: 100%;
    }

    .kyc-questionnaire-row {
        flex-direction: column;
    }

    .kyc-questionnaire-cell:first-child {
        flex: 1;
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }

    .kyc-questionnaire-cell:last-child {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .kyc-card-innr {
        padding: 16px 12px;
    }

    .kyc-card-title {
        font-size: 18px;
    }

    .kyc-document-preview {
        height: 120px;
    }

    .kyc-dropdown-menu {
        right: -8px;
        min-width: 140px;
    }
}

/* Loading and Error States */
.kyc-loading-state {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #6b7280;
}

@media (max-width: 768px) {
    .kyc-dropdown-menu {
        right: -8px;
        min-width: 140px;
    }
}

.kyc-error-state {
    text-align: center;
    padding: 40px;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    color: #dc2626;
}

/* Icon mappings for backward compatibility */
.ti-check::before {
    content: "✓";
}

.ti-na::before {
    content: "✗";
}

.ti-trash::before {
    content: "🗑";
}

.ti-import::before {
    content: "⬇";
}

.ti-more-alt::before {
    content: "⋯";
}

/* User Edit Form - Professional Styling */
.user-edit-form-page {
    background: #f8fafc;
    min-height: 100vh;
    padding: 40px 0;
}

.user-edit-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.user-edit-form-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.user-edit-form-inner {
    padding: 40px;
}

/* Form Header */
.user-edit-form-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

    .user-edit-form-header::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, var(--Primary), var(--YellowGreen));
        border-radius: 1px;
    }

.user-edit-form-title {
    color: #1f2937;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.025em;
}

/* Form Styling */
.form-horizontal.user-edit-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

    .form-horizontal.user-edit-form .form-group {
        display: flex;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 0;
        padding: 20px 0;
        border-bottom: 1px solid #f8fafc;
    }

        .form-horizontal.user-edit-form .form-group:last-child {
            border-bottom: none;
            padding-top: 32px;
            margin-top: 24px;
            border-top: 2px solid #f1f5f9;
        }

    /* Labels */
    .form-horizontal.user-edit-form .control-label {
        flex: 0 0 200px;
        font-size: 14px;
        font-weight: 600;
        color: #374151;
        margin: 8px 0 0 0;
        text-transform: capitalize;
        letter-spacing: 0.025em;
        line-height: 1.4;
    }

    /* Input Containers */
    .form-horizontal.user-edit-form .col-md-10 {
        flex: 1;
        min-width: 0;
    }

    /* Input Fields */
    .form-horizontal.user-edit-form .form-control {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 500;
        color: #1f2937;
        background: #ffffff;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        margin-bottom: 0;
    }

        .form-horizontal.user-edit-form .form-control:focus {
            outline: none;
            border-color: var(--Primary, #161326);
            box-shadow: 0 0 0 3px rgba(22, 19, 38, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateY(-1px);
        }

        .form-horizontal.user-edit-form .form-control:hover {
            border-color: #d1d5db;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

    /* Checkbox Styling */
    .form-horizontal.user-edit-form .checkbox {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 8px 0 0 0;
    }

        .form-horizontal.user-edit-form .checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            border: 2px solid #e5e7eb;
            border-radius: 6px;
            background: #ffffff;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            position: relative;
            transition: all 0.3s ease;
            margin: 0;
        }

            .form-horizontal.user-edit-form .checkbox input[type="checkbox"]:checked {
                background: var(--Primary, #161326);
                border-color: var(--Primary, #161326);
            }

                .form-horizontal.user-edit-form .checkbox input[type="checkbox"]:checked::after {
                    content: '✓';
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    color: #ffffff;
                    font-size: 12px;
                    font-weight: bold;
                }

            .form-horizontal.user-edit-form .checkbox input[type="checkbox"]:focus {
                outline: none;
                box-shadow: 0 0 0 3px rgba(22, 19, 38, 0.1);
            }

    /* Validation Messages */
    

    /* Validation Summary */
    .form-horizontal.user-edit-form .validation-summary-errors {
        background: rgba(239, 68, 68, 0.05);
        border: 1px solid rgba(239, 68, 68, 0.2);
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 24px;
        color: #dc2626;
    }

        .form-horizontal.user-edit-form .validation-summary-errors ul {
            margin: 0;
            padding-left: 20px;
            list-style-type: disc;
        }

    /* Submit Button */
    .form-horizontal.user-edit-form .btn-default {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 16px 32px;
        background: linear-gradient(135deg, var(--Primary, #161326) 0%, #2a1f3d 100%);
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(22, 19, 38, 0.25);
        text-decoration: none;
        letter-spacing: 0.025em;
        position: relative;
        overflow: hidden;
    }

        .form-horizontal.user-edit-form .btn-default::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s;
        }

        .form-horizontal.user-edit-form .btn-default:hover {
            background: linear-gradient(135deg, #1a1530 0%, #332244 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(22, 19, 38, 0.35);
            text-decoration: none;
            color: #ffffff;
        }

            .form-horizontal.user-edit-form .btn-default:hover::before {
                left: 100%;
            }

        .form-horizontal.user-edit-form .btn-default:active {
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(22, 19, 38, 0.25);
        }

    /* Submit Button Container */
    .form-horizontal.user-edit-form .col-md-offset-2 {
        margin-left: 224px;
    }

    /* Hidden Fields */
    .form-horizontal.user-edit-form input[type="hidden"] {
        display: none;
    }

    /* Form Field States */
    .form-horizontal.user-edit-form .form-control.input-validation-error {
        border-color: #ef4444;
        background-color: rgba(239, 68, 68, 0.05);
        animation: userFormShake 0.3s ease-in-out;
    }

@keyframes userFormShake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

.form-horizontal.user-edit-form .form-control.valid {
    border-color: #22c55e;
    background-color: rgba(34, 197, 94, 0.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .user-edit-form-container {
        padding: 0 16px;
    }

    .user-edit-form-inner {
        padding: 32px 24px;
    }

    .user-edit-form-title {
        font-size: 24px;
    }

    .form-horizontal.user-edit-form .control-label {
        flex: 0 0 160px;
    }

    .form-horizontal.user-edit-form .col-md-offset-2 {
        margin-left: 184px;
    }
}

@media (max-width: 768px) {
    .user-edit-form-page {
        padding: 20px 0;
    }

    .user-edit-form-container {
        padding: 0 12px;
    }

    .user-edit-form-inner {
        padding: 24px 20px;
    }

    .user-edit-form-title {
        font-size: 20px;
    }

    .form-horizontal.user-edit-form .form-group {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    .form-horizontal.user-edit-form .control-label {
        flex: none;
        margin-bottom: 0;
    }

    .form-horizontal.user-edit-form .col-md-offset-2 {
        margin-left: 0;
    }

    .form-horizontal.user-edit-form .btn-default {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .user-edit-form-inner {
        padding: 20px 16px;
    }

    .user-edit-form-title {
        font-size: 18px;
    }

    .form-horizontal.user-edit-form .form-control {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form-horizontal.user-edit-form .btn-default {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Loading State */
.form-horizontal.user-edit-form .btn-default:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

    .form-horizontal.user-edit-form .btn-default:disabled::before {
        display: none;
    }


/* User Details/Delete Page - Professional Styling */
.user-details-page {
    background: #f8fafc;
    min-height: 100vh;
    padding: 40px 0;
}

.user-details-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.user-details-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.user-details-inner {
    padding: 40px;
}

/* Header */
.user-details-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

    .user-details-header::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, var(--Primary), var(--YellowGreen));
        border-radius: 1px;
    }

.user-details-title {
    color: #1f2937;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 8px 0;
    letter-spacing: -0.025em;
}

.user-details-hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
    margin: 0;
}

/* Details List */
.user-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.user-details-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
    gap: 24px;
}

    .user-details-item:hover {
        background-color: #f8fafc;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        border-radius: 8px;
    }

    .user-details-item:last-child {
        border-bottom: none;
    }

.user-details-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    min-width: 180px;
    flex-shrink: 0;
    margin: 0;
    text-transform: capitalize;
}

.user-details-value {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    text-align: right;
    word-break: break-all;
    flex: 1;
    margin: 0;
}

    /* Special value types */
    .user-details-value.boolean-true {
        color: #22c55e;
    }

    .user-details-value.boolean-false {
        color: #ef4444;
    }

    .user-details-value.hash-value {
        font-family: 'Courier New', monospace;
        font-size: 12px;
        background: #f1f5f9;
        padding: 4px 8px;
        border-radius: 6px;
        color: #475569;
        display: inline-block;
    }

    .user-details-value.currency-value {
        color: #059669;
        font-weight: 700;
    }

    .user-details-value.wallet-address {
        font-family: 'Courier New', monospace;
        font-size: 13px;
        background: #f1f5f9;
        padding: 6px 10px;
        border-radius: 8px;
        color: #475569;
        display: inline-block;
    }

/* Actions Section */
.user-details-actions {
    padding-top: 32px;
    border-top: 2px solid #f1f5f9;
    margin-top: 32px;
}

.user-details-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.form-actions.no-color {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
    background: none;
}

/* Delete Button */
.user-details-form .btn-default {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

    .user-details-form .btn-default::before {
        content: '🗑';
        font-size: 14px;
        margin-right: 4px;
    }

    .user-details-form .btn-default::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s;
    }

    .user-details-form .btn-default:hover {
        background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.35);
        text-decoration: none;
        color: #ffffff;
    }

        .user-details-form .btn-default:hover::after {
            left: 100%;
        }

/* Back Link */
.user-details-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f8fafc;
    color: #475569;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .user-details-back-link::before {
        content: '←';
        font-size: 16px;
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    .user-details-back-link:hover {
        background: #e2e8f0;
        color: #334155;
        border-color: #cbd5e1;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-decoration: none;
    }

        .user-details-back-link:hover::before {
            transform: translateX(-2px);
        }

/* Warning Box for Delete Action */
.user-details-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    color: #dc2626;
    margin-bottom: 24px;
}

.user-details-warning-icon {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.user-details-warning-text {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .user-details-container {
        padding: 0 16px;
    }

    .user-details-inner {
        padding: 32px 24px;
    }

    .user-details-title {
        font-size: 24px;
    }

    .user-details-label {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .user-details-page {
        padding: 20px 0;
    }

    .user-details-container {
        padding: 0 12px;
    }

    .user-details-inner {
        padding: 24px 20px;
    }

    .user-details-title {
        font-size: 20px;
    }

    .user-details-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
    }

    .user-details-label {
        min-width: auto;
    }

    .user-details-value {
        text-align: left;
    }

    .user-details-form {
        flex-direction: column;
        align-items: stretch;
    }

        .user-details-form .btn-default,
        .user-details-back-link {
            width: 100%;
            justify-content: center;
        }

    .form-actions.no-color {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .user-details-inner {
        padding: 20px 16px;
    }

    .user-details-title {
        font-size: 18px;
    }

    .user-details-value.hash-value,
    .user-details-value.wallet-address {
        font-size: 10px;
        padding: 3px 6px;
        word-break: break-all;
        display: block;
        margin-top: 4px;
    }
}

/* Loading and Error States */
.user-details-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #6b7280;
}

.user-details-error {
    text-align: center;
    padding: 40px;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    color: #dc2626;
}


/* User Create Form - Professional Styling */
.user-create-form-page {
    background: #f8fafc;
    min-height: 100vh;
    padding: 40px 0;
}

.user-create-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.user-create-form-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.user-create-form-inner {
    padding: 40px;
}

.user-create-form-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

    .user-create-form-header::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, var(--Primary), var(--YellowGreen));
        border-radius: 1px;
    }

.user-create-form-title {
    color: #1f2937;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.025em;
}

.user-create-form-hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
    margin: 0;
}

/* Apply the same form styling as user-edit-form */
.form-horizontal.user-create-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Just replace all instances of "user-edit-form" with "user-create-form" in the previous CSS */

    /* Form Elements Styling - Add this to your existing CSS */

    /* Input Fields */
    .form-horizontal.user-create-form .form-control,
    .form-horizontal.user-edit-form .form-control {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 500;
        color: #1f2937;
        background: #ffffff;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        margin-bottom: 0;
        font-family: "Inter", sans-serif;
    }

        .form-horizontal.user-create-form .form-control:focus,
        .form-horizontal.user-edit-form .form-control:focus {
            outline: none;
            border-color: var(--Primary, #161326);
            box-shadow: 0 0 0 3px rgba(22, 19, 38, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateY(-1px);
        }

        .form-horizontal.user-create-form .form-control:hover,
        .form-horizontal.user-edit-form .form-control:hover {
            border-color: #d1d5db;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .form-horizontal.user-create-form .form-control::placeholder,
        .form-horizontal.user-edit-form .form-control::placeholder {
            color: #9ca3af;
            font-weight: 400;
        }

/* Textarea */
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Checkbox Styling */
.form-horizontal.user-create-form .checkbox,
.form-horizontal.user-edit-form .checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0 0 0;
    padding: 0;
}

    .form-horizontal.user-create-form .checkbox input[type="checkbox"],
    .form-horizontal.user-edit-form .checkbox input[type="checkbox"] {
        width: 20px;
        height: 20px;
        border: 2px solid #e5e7eb;
        border-radius: 6px;
        background: #ffffff;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        position: relative;
        transition: all 0.3s ease;
        margin: 0;
        flex-shrink: 0;
    }

        .form-horizontal.user-create-form .checkbox input[type="checkbox"]:checked,
        .form-horizontal.user-edit-form .checkbox input[type="checkbox"]:checked {
            background: var(--Primary, #161326);
            border-color: var(--Primary, #161326);
        }

            .form-horizontal.user-create-form .checkbox input[type="checkbox"]:checked::after,
            .form-horizontal.user-edit-form .checkbox input[type="checkbox"]:checked::after {
                content: '✓';
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                color: #ffffff;
                font-size: 12px;
                font-weight: bold;
                line-height: 1;
            }

        .form-horizontal.user-create-form .checkbox input[type="checkbox"]:focus,
        .form-horizontal.user-edit-form .checkbox input[type="checkbox"]:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(22, 19, 38, 0.1);
        }

        .form-horizontal.user-create-form .checkbox input[type="checkbox"]:hover,
        .form-horizontal.user-edit-form .checkbox input[type="checkbox"]:hover {
            border-color: #d1d5db;
        }

/* Labels */
.form-horizontal.user-create-form .control-label,
.form-horizontal.user-edit-form .control-label {
    flex: 0 0 200px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin: 8px 0 0 0;
    text-transform: capitalize;
    letter-spacing: 0.025em;
    line-height: 1.4;
}

/* Form Groups */
.form-horizontal.user-create-form .form-group,
.form-horizontal.user-edit-form .form-group {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 0;
    padding: 20px 0;
    border-bottom: 1px solid #f8fafc;
}

    .form-horizontal.user-create-form .form-group:last-child,
    .form-horizontal.user-edit-form .form-group:last-child {
        border-bottom: none;
        padding-top: 32px;
        margin-top: 24px;
        border-top: 2px solid #f1f5f9;
    }

/* Input Containers */
.form-horizontal.user-create-form .col-md-10,
.form-horizontal.user-edit-form .col-md-10 {
    flex: 1;
    min-width: 0;
}

/* Validation Messages */

.form-horizontal.user-edit-form .text-danger {
    color: #ef4444;
    font-size: 12px;
    font-weight: 500;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}


/* Validation Summary */
.form-horizontal.user-create-form .validation-summary-errors,
.form-horizontal.user-edit-form .validation-summary-errors {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    color: #dc2626;
}

    .form-horizontal.user-create-form .validation-summary-errors ul,
    .form-horizontal.user-edit-form .validation-summary-errors ul {
        margin: 0;
        padding-left: 20px;
        list-style-type: disc;
    }

/* Submit Button */
.form-horizontal.user-create-form .btn-default,
.form-horizontal.user-edit-form .btn-default {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--Primary, #161326) 0%, #2a1f3d 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(22, 19, 38, 0.25);
    text-decoration: none;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
    font-family: "Inter", sans-serif;
}

    .form-horizontal.user-create-form .btn-default::before {
        content: '👤';
        font-size: 14px;
        margin-right: 4px;
    }

    .form-horizontal.user-edit-form .btn-default::before {
        content: '💾';
        font-size: 14px;
        margin-right: 4px;
    }

    .form-horizontal.user-create-form .btn-default::after,
    .form-horizontal.user-edit-form .btn-default::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s;
    }

    .form-horizontal.user-create-form .btn-default:hover,
    .form-horizontal.user-edit-form .btn-default:hover {
        background: linear-gradient(135deg, #1a1530 0%, #332244 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(22, 19, 38, 0.35);
        text-decoration: none;
        color: #ffffff;
    }

        .form-horizontal.user-create-form .btn-default:hover::after,
        .form-horizontal.user-edit-form .btn-default:hover::after {
            left: 100%;
        }

    .form-horizontal.user-create-form .btn-default:active,
    .form-horizontal.user-edit-form .btn-default:active {
        transform: translateY(0);
        box-shadow: 0 4px 12px rgba(22, 19, 38, 0.25);
    }

/* Submit Button Container */
.form-horizontal.user-create-form .col-md-offset-2,
.form-horizontal.user-edit-form .col-md-offset-2 {
    margin-left: 224px;
}

/* Hidden Fields */
.form-horizontal.user-create-form input[type="hidden"],
.form-horizontal.user-edit-form input[type="hidden"] {
    display: none;
}

/* Form Field States */
.form-horizontal.user-create-form .form-control.input-validation-error,
.form-horizontal.user-edit-form .form-control.input-validation-error {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.05);
    animation: userFormShake 0.3s ease-in-out;
}

@keyframes userFormShake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

.form-horizontal.user-create-form .form-control.valid,
.form-horizontal.user-edit-form .form-control.valid {
    border-color: #22c55e;
    background-color: rgba(34, 197, 94, 0.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-horizontal.user-create-form .control-label,
    .form-horizontal.user-edit-form .control-label {
        flex: 0 0 160px;
    }

    .form-horizontal.user-create-form .col-md-offset-2,
    .form-horizontal.user-edit-form .col-md-offset-2 {
        margin-left: 184px;
    }
}

@media (max-width: 768px) {
    .form-horizontal.user-create-form .form-group,
    .form-horizontal.user-edit-form .form-group {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    .form-horizontal.user-create-form .control-label,
    .form-horizontal.user-edit-form .control-label {
        flex: none;
        margin-bottom: 0;
    }

    .form-horizontal.user-create-form .col-md-offset-2,
    .form-horizontal.user-edit-form .col-md-offset-2 {
        margin-left: 0;
    }

    .form-horizontal.user-create-form .btn-default,
    .form-horizontal.user-edit-form .btn-default {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .form-horizontal.user-create-form .form-control,
    .form-horizontal.user-edit-form .form-control {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form-horizontal.user-create-form .btn-default,
    .form-horizontal.user-edit-form .btn-default {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Loading State */
.form-horizontal.user-create-form .btn-default:disabled,
.form-horizontal.user-edit-form .btn-default:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

    .form-horizontal.user-create-form .btn-default:disabled::before,
    .form-horizontal.user-edit-form .btn-default:disabled::before,
    .form-horizontal.user-create-form .btn-default:disabled::after,
    .form-horizontal.user-edit-form .btn-default:disabled::after {
        display: none;
    }


/* Promo Create Form - Professional Styling */
.promo-form-page {
    background: #f8fafc;
    min-height: 100vh;
    padding: 40px 0;
}

.promo-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.promo-form-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.promo-form-inner {
    padding: 40px;
}

.promo-form-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

    .promo-form-header::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, var(--Primary), var(--YellowGreen));
        border-radius: 1px;
    }

.promo-form-title {
    color: #1f2937;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.025em;
}

.promo-form-hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
    margin: 0;
}

/* Form Styling */
.form-horizontal.promo-create-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

    .form-horizontal.promo-create-form .form-group {
        display: flex;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 0;
        padding: 20px 0;
        border-bottom: 1px solid #f8fafc;
    }

        .form-horizontal.promo-create-form .form-group:last-child {
            border-bottom: none;
            padding-top: 32px;
            margin-top: 24px;
            border-top: 2px solid #f1f5f9;
        }

    .form-horizontal.promo-create-form .control-label {
        flex: 0 0 200px;
        font-size: 14px;
        font-weight: 600;
        color: #374151;
        margin: 8px 0 0 0;
        text-transform: capitalize;
        letter-spacing: 0.025em;
        line-height: 1.4;
    }

    .form-horizontal.promo-create-form .col-md-10 {
        flex: 1;
        min-width: 0;
    }

    .form-horizontal.promo-create-form .form-control {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 500;
        color: #1f2937;
        background: #ffffff;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        margin-bottom: 0;
        font-family: "Inter", sans-serif;
    }

        .form-horizontal.promo-create-form .form-control:focus {
            outline: none;
            border-color: var(--Primary, #161326);
            box-shadow: 0 0 0 3px rgba(22, 19, 38, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateY(-1px);
        }

        .form-horizontal.promo-create-form .form-control:hover {
            border-color: #d1d5db;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .form-horizontal.promo-create-form .form-control::placeholder {
            color: #9ca3af;
            font-weight: 400;
        }

    .form-horizontal.promo-create-form .checkbox {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 8px 0 0 0;
        padding: 0;
    }

        .form-horizontal.promo-create-form .checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            border: 2px solid #e5e7eb;
            border-radius: 6px;
            background: #ffffff;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            position: relative;
            transition: all 0.3s ease;
            margin: 0;
            flex-shrink: 0;
        }

            .form-horizontal.promo-create-form .checkbox input[type="checkbox"]:checked {
                background: var(--Primary, #161326);
                border-color: var(--Primary, #161326);
            }

                .form-horizontal.promo-create-form .checkbox input[type="checkbox"]:checked::after {
                    content: '✓';
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    color: #ffffff;
                    font-size: 12px;
                    font-weight: bold;
                    line-height: 1;
                }

    .form-horizontal.promo-create-form .text-danger {
        color: #ef4444;
        font-size: 12px;
        font-weight: 500;
        margin-top: 6px;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .form-horizontal.promo-create-form .validation-summary-errors {
        background: rgba(239, 68, 68, 0.05);
        border: 1px solid rgba(239, 68, 68, 0.2);
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 24px;
        color: #dc2626;
    }

        .form-horizontal.promo-create-form .validation-summary-errors ul {
            margin: 0;
            padding-left: 20px;
            list-style-type: disc;
        }

    .form-horizontal.promo-create-form .btn-default {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 16px 32px;
        background: linear-gradient(135deg, var(--Primary, #161326) 0%, #2a1f3d 100%);
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(22, 19, 38, 0.25);
        text-decoration: none;
        letter-spacing: 0.025em;
        position: relative;
        overflow: hidden;
        font-family: "Inter", sans-serif;
    }

        .form-horizontal.promo-create-form .btn-default::before {
            content: '🎫';
            font-size: 14px;
            margin-right: 4px;
        }

        .form-horizontal.promo-create-form .btn-default::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s;
        }

        .form-horizontal.promo-create-form .btn-default:hover {
            background: linear-gradient(135deg, #1a1530 0%, #332244 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(22, 19, 38, 0.35);
            text-decoration: none;
            color: #ffffff;
        }

            .form-horizontal.promo-create-form .btn-default:hover::after {
                left: 100%;
            }

    .form-horizontal.promo-create-form .col-md-offset-2 {
        margin-left: 320px;
    }

    .form-horizontal.promo-create-form .form-control.input-validation-error {
        border-color: #ef4444;
        background-color: rgba(239, 68, 68, 0.05);
        animation: promoFormShake 0.3s ease-in-out;
    }

@keyframes promoFormShake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .promo-form-container {
        padding: 0 16px;
    }

    .promo-form-inner {
        padding: 32px 24px;
    }

    .promo-form-title {
        font-size: 24px;
    }

    .form-horizontal.promo-create-form .control-label {
        flex: 0 0 160px;
    }

    .form-horizontal.promo-create-form .col-md-offset-2 {
        margin-left: 184px;
    }
}

@media (max-width: 768px) {
    .promo-form-page {
        padding: 20px 0;
    }

    .promo-form-container {
        padding: 0 12px;
    }

    .promo-form-inner {
        padding: 24px 20px;
    }

    .promo-form-title {
        font-size: 20px;
    }

    .form-horizontal.promo-create-form .form-group {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    .form-horizontal.promo-create-form .control-label {
        flex: none;
        margin-bottom: 0;
    }

    .form-horizontal.promo-create-form .col-md-offset-2 {
        margin-left: 0;
    }

    .form-horizontal.promo-create-form .btn-default {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .promo-form-inner {
        padding: 20px 16px;
    }

    .promo-form-title {
        font-size: 18px;
    }

    .form-horizontal.promo-create-form .form-control {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form-horizontal.promo-create-form .btn-default {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Promo Table - Professional Styling */
.promo-table-page {
    background: #f8fafc;
    min-height: 100vh;
    padding: 40px 0;
}

.promo-table-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.promo-table-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.promo-table-inner {
    padding: 32px;
}

/* Header */
.promo-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

    .promo-table-header::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, var(--Primary, #161326), var(--YellowGreen, #c0faa0));
        border-radius: 1px;
    }

.promo-table-title {
    color: #1f2937;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.025em;
}

.promo-table-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .promo-table-actions .create-btn {
        margin: 0;
    }

.promo-add-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--Primary, #161326) 0%, #2a1f3d 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(22, 19, 38, 0.25);
    text-decoration: none;
}

    

    .promo-add-button:hover {
        background: linear-gradient(135deg, #1a1530 0%, #332244 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(22, 19, 38, 0.35);
        text-decoration: none;
        color: #ffffff;
    }

/* Table Wrapper */
.promo-table-wrapper {
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    background: var(--White);
    overflow: hidden;
}

/* Table Styling */
.promo-data-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: auto;
}

.promo-table-head {
    background: linear-gradient(135deg, var(--Primary, #161326) 0%, #2a1f3d 100%);
}

.promo-header-row {
    border: none;
}

.promo-header-cell {
    padding: 18px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--White);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    text-align: left;
    position: relative;
}

    .promo-header-cell:first-child {
        border-radius: 16px 0 0 0;
    }

    .promo-header-cell:last-child {
        border-radius: 0 16px 0 0;
    }

/* Column widths */
.promo-code-header {
    width: 25%;
    min-width: 150px;
}

.promo-date-header {
    width: 20%;
    min-width: 120px;
}

.promo-active-header {
    width: 15%;
    min-width: 100px;
}

.promo-wallet-header {
    width: 25%;
    min-width: 180px;
}

.promo-actions-header {
    width: 15%;
    min-width: 120px;
    text-align: center;
}

/* Table Body */
.promo-table-body {
    background: var(--White);
}

    .promo-table-body tr {
        border-bottom: 1px solid #f8fafc;
        transition: all 0.3s ease;
    }

        .promo-table-body tr:hover {
            background: #f8fafc;
            transform: translateX(2px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .promo-table-body tr:last-child {
            border-bottom: none;
        }

    .promo-table-body td {
        padding: 16px;
        border: none;
        vertical-align: middle;
        font-size: 14px;
        color: #1f2937;
    }

/* Data Cell Styling */
.promo-code-cell {
    font-weight: 700;
    color: #7c3aed;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

.promo-date-cell {
    color: #6b7280;
    font-size: 13px;
}

.promo-active-cell {
    font-weight: 600;
}

.promo-wallet-cell {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #475569;
    word-break: break-all;
}

/* Action Buttons */
.promo-actions-cell {
    text-align: center;
}

.promo-action-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.promo-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    text-decoration: none;
    padding: 6px 12px;
    width: auto;
    min-width: 60px;
    font-size: 11px;
    font-weight: 600;
}

    .promo-action-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
        text-decoration: none;
    }

.promo-edit-btn {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

    .promo-edit-btn:hover {
        background: #22c55e;
        color: var(--White);
        border-color: #22c55e;
    }

.promo-view-btn {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

    .promo-view-btn:hover {
        background: #3b82f6;
        color: var(--White);
        border-color: #3b82f6;
    }

.promo-delete-btn {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

    .promo-delete-btn:hover {
        background: #ef4444;
        color: var(--White);
        border-color: #ef4444;
    }

/* Boolean Display */
.promo-active-cell {
    text-align: center;
}

/* Status styling for Active column */
.promo-table-body .promo-active-cell {
    text-align: start;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .promo-table-container {
        padding: 0 16px;
    }

    .promo-table-inner {
        padding: 24px 20px;
    }

    .promo-table-header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .promo-table-title {
        font-size: 24px;
        text-align: center;
    }

    .promo-table-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .promo-table-page {
        padding: 20px 0;
    }

    .promo-table-container {
        padding: 0 12px;
    }

    .promo-table-inner {
        padding: 20px 16px;
    }

    .promo-table-title {
        font-size: 20px;
    }

    

    .promo-header-cell,
    .promo-table-body td {
        padding: 12px 10px;
        font-size: 12px;
    }

    .promo-action-buttons {
        gap: 4px;
    }

    .promo-action-btn {
        width: 28px;
        height: 28px;
        font-size: 10px;
        min-width: 50px;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .promo-table-wrapper {
        margin: 0 -16px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .promo-header-cell:first-child,
    .promo-header-cell:last-child {
        border-radius: 0;
    }

   

    .promo-header-cell,
    .promo-table-body td {
        padding: 10px 8px;
        font-size: 11px;
    }
}

/* Custom Scrollbar for Table */
.promo-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.promo-table-wrapper::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.promo-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--Primary, #161326);
    border-radius: 4px;
}

    .promo-table-wrapper::-webkit-scrollbar-thumb:hover {
        background: #1a1530;
    }


/* Apply the same styling to promo-edit-form */
.form-horizontal.promo-edit-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

    .form-horizontal.promo-edit-form .form-group {
        display: flex;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 0;
        padding: 20px 0;
        border-bottom: 1px solid #f8fafc;
    }

        .form-horizontal.promo-edit-form .form-group:last-child {
            border-bottom: none;
            padding-top: 32px;
/*            margin-top: 24px;*/
/*            border-top: 2px solid #f1f5f9;*/
        }

    .form-horizontal.promo-edit-form .control-label {
        flex: 0 0 200px;
        font-size: 14px;
        font-weight: 600;
        color: #374151;
        margin: 8px 0 0 0;
        text-transform: capitalize;
        letter-spacing: 0.025em;
        line-height: 1.4;
    }

    .form-horizontal.promo-edit-form .col-md-10 {
        flex: 1;
        min-width: 0;
    }

    .form-horizontal.promo-edit-form .form-control {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 500;
        color: #1f2937;
        background: #ffffff;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        margin-bottom: 0;
        font-family: "Inter", sans-serif;
    }

        .form-horizontal.promo-edit-form .form-control:focus {
            outline: none;
            border-color: var(--Primary, #161326);
            box-shadow: 0 0 0 3px rgba(22, 19, 38, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateY(-1px);
        }

        .form-horizontal.promo-edit-form .form-control:hover {
            border-color: #d1d5db;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .form-horizontal.promo-edit-form .form-control::placeholder {
            color: #9ca3af;
            font-weight: 400;
        }

    .form-horizontal.promo-edit-form .checkbox {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 8px 0 0 0;
        padding: 0;
    }

        .form-horizontal.promo-edit-form .checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            border: 2px solid #e5e7eb;
            border-radius: 6px;
            background: #ffffff;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            position: relative;
            transition: all 0.3s ease;
            margin: 0;
            flex-shrink: 0;
        }

            .form-horizontal.promo-edit-form .checkbox input[type="checkbox"]:checked {
                background: var(--Primary, #161326);
                border-color: var(--Primary, #161326);
            }

                .form-horizontal.promo-edit-form .checkbox input[type="checkbox"]:checked::after {
                    content: '✓';
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    color: #ffffff;
                    font-size: 12px;
                    font-weight: bold;
                    line-height: 1;
                }

    .form-horizontal.promo-edit-form .text-danger {
        color: #ef4444;
        font-size: 12px;
        font-weight: 500;
        margin-top: 6px;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .form-horizontal.promo-edit-form .validation-summary-errors {
        background: rgba(239, 68, 68, 0.05);
        border: 1px solid rgba(239, 68, 68, 0.2);
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 24px;
        color: #dc2626;
    }

        .form-horizontal.promo-edit-form .validation-summary-errors ul {
            margin: 0;
            padding-left: 20px;
            list-style-type: disc;
        }

    .form-horizontal.promo-edit-form .btn-default {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 16px 20px;
        background: linear-gradient(135deg, var(--Primary, #161326) 0%, #2a1f3d 100%);
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(22, 19, 38, 0.25);
        text-decoration: none;
        letter-spacing: 0.025em;
        position: relative;
        overflow: hidden;
        font-family: "Inter", sans-serif;
    }

        

        .form-horizontal.promo-edit-form .btn-default::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s;
        }

        .form-horizontal.promo-edit-form .btn-default:hover {
            background: linear-gradient(135deg, #1a1530 0%, #332244 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(22, 19, 38, 0.35);
            text-decoration: none;
            color: #ffffff;
        }

            .form-horizontal.promo-edit-form .btn-default:hover::after {
                left: 100%;
            }

    .form-horizontal.promo-edit-form .col-md-offset-2 {
        margin-left: 320px;
    }

    .form-horizontal.promo-edit-form .form-control.input-validation-error {
        border-color: #ef4444;
        background-color: rgba(239, 68, 68, 0.05);
        animation: promoEditFormShake 0.3s ease-in-out;
    }

@keyframes promoEditFormShake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

/* Responsive Design for Edit Form */
@media (max-width: 1024px) {
    .form-horizontal.promo-edit-form .control-label {
        flex: 0 0 160px;
    }

    .form-horizontal.promo-edit-form .col-md-offset-2 {
        margin-left: 184px;
    }
}

@media (max-width: 768px) {
    .form-horizontal.promo-edit-form .form-group {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    .form-horizontal.promo-edit-form .control-label {
        flex: none;
        margin-bottom: 0;
    }

    .form-horizontal.promo-edit-form .col-md-offset-2 {
        margin-left: 0;
    }

    .form-horizontal.promo-edit-form .btn-default {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .form-horizontal.promo-edit-form .form-control {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form-horizontal.promo-edit-form .btn-default {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Promo Details Page - Professional Styling */
.promo-details-page {
    background: #f8fafc;
    min-height: 100vh;
    padding: 40px 0;
}

.promo-details-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.promo-details-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.promo-details-inner {
    padding: 40px;
}

/* Header */
.promo-details-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

    .promo-details-header::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, var(--Primary), var(--YellowGreen));
        border-radius: 1px;
    }

.promo-details-title {
    color: #1f2937;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 8px 0;
    letter-spacing: -0.025em;
}

.promo-details-hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
    margin: 0;
}

/* Details List */
.promo-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

    .promo-details-list dt {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 16px 0 8px 0;
        font-size: 14px;
        font-weight: 600;
        color: #6b7280;
        margin: 0;
        text-transform: capitalize;
        border-bottom: none;
    }

    .promo-details-list dd {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0 0 16px 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 15px;
        font-weight: 600;
        color: #1f2937;
        margin: 0;
        transition: background-color 0.2s ease;
    }

        .promo-details-list dd:hover {
            background-color: #f8fafc;
            margin: 0 -16px;
            padding-left: 16px;
            padding-right: 16px;
            border-radius: 8px;
        }

    .promo-details-list dt:last-of-type + dd {
        border-bottom: none;
    }

/* Value Styling */
.promo-code-value {
    font-weight: 700;
    color: #7c3aed;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    background: #f3f4f6;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
    width: auto;
}

.promo-date-value {
    color: #6b7280;
    font-size: 14px;
}

.promo-active-value {
    font-weight: 700;
}

.promo-wallet-value {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    background: #f1f5f9;
    padding: 6px 10px;
    border-radius: 8px;
    color: #475569;
    display: inline-block;
    word-break: break-all;
    width: auto;
}

/* Boolean Display Enhancement */
.promo-active-value:contains("True"),
.promo-active-value[data-value="true"] {
    color: #22c55e;
}

.promo-active-value:contains("False"),
.promo-active-value[data-value="false"] {
    color: #ef4444;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .promo-details-container {
        padding: 0 16px;
    }

    .promo-details-inner {
        padding: 32px 24px;
    }

    .promo-details-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .promo-details-page {
        padding: 20px 0;
    }

    .promo-details-container {
        padding: 0 12px;
    }

    .promo-details-inner {
        padding: 24px 20px;
    }

    .promo-details-title {
        font-size: 20px;
    }

    .promo-details-list dt,
    .promo-details-list dd {
        padding-left: 0;
        padding-right: 0;
    }

    .promo-code-value,
    .promo-wallet-value {
        font-size: 12px;
        padding: 6px 8px;
        word-break: break-all;
        display: block;
        margin-top: 4px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .promo-details-inner {
        padding: 20px 16px;
    }

    .promo-details-title {
        font-size: 18px;
    }

    .promo-code-value,
    .promo-wallet-value {
        font-size: 10px;
        padding: 4px 6px;
    }
}

/* Promo Delete Page - Professional Styling */
.promo-delete-page {
    background: #f8fafc;
    min-height: 100vh;
    padding: 40px 0;
}

.promo-delete-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.promo-delete-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.promo-delete-inner {
    padding: 40px;
}

/* Header */
.promo-delete-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

    .promo-delete-header::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, #dc2626, #ef4444);
        border-radius: 1px;
    }

.promo-delete-title {
    color: #dc2626;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 8px 0;
    letter-spacing: -0.025em;
}

.promo-delete-hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
    margin: 0;
}

/* Details List */
.promo-delete-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
/*    background: #fef2f2;
    border: 1px solid #fecaca;*/
    border-radius: 12px;
    padding: 24px;
}

    .promo-delete-list dt {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 16px 0 8px 0;
        font-size: 14px;
        font-weight: 600;
        color: #6b7280;
        margin: 0;
        text-transform: capitalize;
        border-bottom: none;
    }

    .promo-delete-list dd {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0 0 16px 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 15px;
        font-weight: 600;
        color: #1f2937;
        margin: 0;
        transition: background-color 0.2s ease;
    }

        .promo-delete-list dd:hover {
            background-color: #fef9c3;
            margin: 0 -16px;
            padding-left: 16px;
            padding-right: 16px;
            border-radius: 8px;
        }

    .promo-delete-list dt:last-of-type + dd {
        border-bottom: none;
    }

    /* Value Styling for Delete Page */
    .promo-delete-list .promo-code-value {
        font-weight: 700;
        color: #dc2626;
        font-family: 'Courier New', monospace;
        font-size: 14px;
        background: #ffffff;
        padding: 8px 12px;
        border-radius: 8px;
        border: 1px solid #fecaca;
        display: inline-block;
        width: auto;
    }

    .promo-delete-list .promo-date-value {
        color: #dc2626;
        font-size: 14px;
        font-weight: 600;
    }

    .promo-delete-list .promo-active-value {
        font-weight: 700;
        color: #dc2626;
    }

    .promo-delete-list .promo-wallet-value {
        font-family: 'Courier New', monospace;
        font-size: 13px;
        background: #ffffff;
        padding: 6px 10px;
        border-radius: 8px;
        border: 1px solid #fecaca;
        color: #dc2626;
        display: inline-block;
        word-break: break-all;
        width: auto;
    }

/* Actions Section */
.promo-delete-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
    border-top: 2px solid #f1f5f9;
    margin-top: 32px;
    background: none !important;
}

/* Delete Button */
.promo-delete-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%) !important;
    color: #ffffff !important;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

    .promo-delete-button::before {
        content: '🗑';
        font-size: 14px;
        margin-right: 4px;
    }

    .promo-delete-button::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s;
    }

    .promo-delete-button:hover {
        background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%) !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.35);
        text-decoration: none;
        color: #ffffff !important;
    }

        .promo-delete-button:hover::after {
            left: 100%;
        }

/* Back Link */
.promo-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f8fafc;
    color: #475569;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .promo-back-link::before {
        content: '←';
        font-size: 16px;
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    .promo-back-link:hover {
        background: #e2e8f0;
        color: #334155;
        border-color: #cbd5e1;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-decoration: none;
    }

        .promo-back-link:hover::before {
            transform: translateX(-2px);
        }

/* Warning styling for the entire page */


/* Responsive Design */
@media (max-width: 1024px) {
    .promo-delete-container {
        padding: 0 16px;
    }

    .promo-delete-inner {
        padding: 32px 24px;
    }

    .promo-delete-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .promo-delete-page {
        padding: 20px 0;
    }

    .promo-delete-container {
        padding: 0 12px;
    }

    .promo-delete-inner {
        padding: 24px 20px;
    }

    .promo-delete-title {
        font-size: 20px;
    }

    .promo-delete-list {
        padding: 20px;
    }

    .promo-delete-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .promo-delete-button,
    .promo-back-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .promo-delete-inner {
        padding: 20px 16px;
    }

    .promo-delete-title {
        font-size: 18px;
    }

    .promo-delete-list {
        padding: 16px;
    }

        .promo-delete-list .promo-code-value,
        .promo-delete-list .promo-wallet-value {
            font-size: 12px;
            padding: 6px 8px;
            word-break: break-all;
            display: block;
            margin-top: 4px;
            width: 100%;
        }
}

/* Professional Footer Styling */
.professional-footer {
    background: #161326;
    border-top: 4px solid var(--YellowGreen, #c0faa0);
    padding: 32px 0;
    margin-top: 60px;
    position: relative;
}

    .professional-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

    .footer-links li {
        margin: 0;
    }

.footer-link {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #e5e7eb !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .footer-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--YellowGreen, #c0faa0);
        transform: translateX(-50%);
        transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .footer-link:hover {
        color: var(--YellowGreen, #c0faa0) !important;
        text-decoration: none;
        transform: translateY(-2px);
        background: rgba(192, 250, 160, 0.1);
    }

        .footer-link:hover::before {
            width: 60%;
        }

.footer-copyright-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.copyright-text {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #9ca3af;
    margin: 0;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .copyright-text:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }



/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 16px;
    }

    .professional-footer {
        padding: 28px 0;
    }

    .footer-links {
        gap: 24px;
    }

    .footer-link {
        font-size: 15px !important;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .professional-footer {
        padding: 24px 0;
        margin-top: 40px;
    }

    .footer-container {
        padding: 0 12px;
    }

    .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .footer-links-section {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        gap: 20px;
        justify-content: center;
    }

    .footer-copyright-section {
        width: 100%;
        justify-content: center;
    }

    .footer-link {
        font-size: 14px !important;
        padding: 6px 10px;
    }

    .copyright-text {
        font-size: 13px !important;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .professional-footer {
        padding: 20px 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .footer-link {
        font-size: 13px !important;
        padding: 8px 16px;
        width: 100%;
        max-width: 200px;
        text-align: center;
        justify-content: center;
    }

    .copyright-text {
        font-size: 12px !important;
        padding: 6px 12px;
        text-align: center;
    }
}

/* Animation for footer appearance */
.professional-footer {
    animation: footerFadeInUp 0.8s ease-out;
}

@keyframes footerFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect for entire footer */
.professional-footer:hover {
    background: linear-gradient(135deg, #1a1530 0%, #332244 100%);
    transition: background 0.3s ease;
}

.icon-size {
    border:#fff;
    background: #fff;
    border-radius: 11px;
    width: 15%;
    padding: 10px 4px;
    display: flex;
    justify-content: center;
}

.icon-logo {
    border: #161326;
    background: #161326;
    border-radius: 11px;
    width: 15%;
    padding: 5px 4px;
}

.icon-size-black {
    border: #161326;
    background: #161326;
    border-radius: 11px;
    width: 15%;
    padding: 10px 4px;
    color: white;
    display: flex;
    justify-content: center;
}
/* Change line color */
#line-chart-twoline .apexcharts-line-series path {
    stroke: #e54d35 !important; /* Your desired line color */
}

/* Change dots/markers color */
#line-chart-twoline .apexcharts-marker {
    fill: #e54d35 !important; /* Same color as line or different */
    stroke: #fff !important; /* White border around dots */
}

/* Alternative selector for markers if the above doesn't work */
#line-chart-twoline .apexcharts-series-markers .apexcharts-marker {
    fill: #e54d35 !important;
    stroke: #fff !important;
}

/* Change the tooltip marker/dot color */
#line-chart-twoline .apexcharts-tooltip-marker {
    background-color: #e54d35 !important;
    border-color: #e54d35 !important;
}

/* Alternative selector for tooltip markers */
#line-chart-twoline .apexcharts-tooltip .apexcharts-tooltip-marker {
    background: #e54d35 !important;
}

/* If it's in the legend area */
#line-chart-twoline .apexcharts-legend-marker {
    background: #e54d35 !important;
    border-color: #e54d35 !important;
}

/* For any series markers in tooltips */
#line-chart-twoline .apexcharts-tooltip-series-group .apexcharts-tooltip-marker {
    background-color: #e54d35 !important;
}


.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.custom-alert-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    animation: slideIn 0.3s ease;
}

.custom-alert-overlay.success .custom-alert-box {
    border-top: 5px solid #4CAF50;
}

.custom-alert-overlay.error .custom-alert-box {
    border-top: 5px solid #f44336;
}

.custom-alert-icon {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}

.custom-alert-overlay.success .custom-alert-icon {
    color: #4CAF50;
}

.custom-alert-overlay.error .custom-alert-icon {
    color: #f44336;
}

.custom-alert-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.custom-alert-overlay.success .custom-alert-title {
    color: #4CAF50;
}

.custom-alert-overlay.error .custom-alert-title {
    color: #f44336;
}

.custom-alert-message {
    font-size: 16px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.4;
}

.custom-alert-button {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    min-width: 80px;
}

    .custom-alert-button:hover {
        background: #005a8b;
    }

.custom-alert-overlay.success .custom-alert-button {
    background: #4CAF50;
}

    .custom-alert-overlay.success .custom-alert-button:hover {
        background: #45a049;
    }

.custom-alert-overlay.error .custom-alert-button {
    background: #f44336;
}

    .custom-alert-overlay.error .custom-alert-button:hover {
        background: #da190b;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: scale(0.8) translateY(-20px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}



.auth-login-button {
    background-color: #007bff;
    color: white;
}

.auth-signup-button {
    background-color: #6c757d;
    color: white;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    min-height: 20px;
}

.general-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: none;
}

/* Laptop Screen Optimizations (1024px - 1920px) */
@media (min-width: 1024px) and (max-width: 1850px) {

    .table-list-transaction tbody tr {
        gap: 22px !important;
    }
    /* Main Layout Adjustments */
    .layout-wrap .section-content-right .main-content {
        padding-left: 240px; /* Reduced from 256px */
    }

    .header-dashboard {
        width: calc(100% - 240px);
        padding: 16px 32px; /* Reduced padding */
    }

    .section-menu-left {
        width: 240px;
        min-width: 240px;
    }

        .section-menu-left > .box-logo {
            width: 240px;
            padding: 20px 24px;
        }

    /* Dashboard Grid Layout */
    .main-content-inner {
        padding: 24px 32px; /* Reduced padding */
        max-width: 1400px; /* Limit max width */
        margin: 0 auto;
    }

    /* Dashboard Cards Grid */
    .dashboard-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-bottom: 32px;
    }

    /* Card Sizing */
    .wg-card {
        padding: 20px;
        min-height: 140px;
        max-height: 180px;
    }

        .wg-card.style-1 {
            padding: 20px;
            height: 160px;
        }

    /* Token Sales Progress Card */
    .wg-box.token-sales-progress {
        width: 100% !important;
        max-width: 270px !important;
        min-width: 270px !important;
        margin: 0 !important;
        flex: none !important;
    }

    /* Token Calculator Card */
    .wg-box.token-calculator {
        width: 100% !important;
        max-width: 270px !important;
        min-width: 270px !important;
        margin: 0 !important;
        flex: none !important;
    }

    /* Chart Containers */
    .chart-container {
        background: #ffffff;
        border-radius: 16px;
        padding: 24px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        border: 1px solid #f1f5f9;
        margin-bottom: 24px;
        height: 400px; /* Fixed height for consistency */
    }

    /* Token Sales Graph */
    .tokens-sale-graph {
        height: 350px;
        width: 100%;
    }

    /* Dashboard Layout Grid */
    .dashboard-main-grid {
        display: grid;
        grid-template-columns: 1fr 380px; /* Main content + sidebar */
        gap: 32px;
        align-items: start;
    }

    /* Sidebar Column */
    .dashboard-sidebar {
        display: flex;
        flex-direction: column;
        gap: 24px;
        position: sticky;
        top: 120px; /* Account for header */
    }

    /* Main Content Column */
    .dashboard-main-content {
        min-width: 0; /* Prevent overflow */
    }

    /* Transaction Table Optimizations */
    .wg-box.style-1 {
        padding: 20px;
        margin-bottom: 24px;
    }

    .table-list-transaction {
        overflow-x: auto;
        border-radius: 12px;
        border: 1px solid #f1f5f9;
    }

        .table-list-transaction > * {
            min-width: 900px;
        }

    /* Responsive Cards Layout */
    .cards-row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 32px;
    }

    /* Typography Adjustments */
    h1, .h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    h2, .h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    h6, .h6 {
        font-size: 14px;
        line-height: 1.4;
    }

    /* Button Sizing */
    .tf-button {
        padding: 10px 16px;
        font-size: 14px;
    }

        .tf-button.style-4 {
            padding: 12px 20px;
            font-size: 15px;
        }

    /* Navigation Menu */
    .section-menu-left .menu-item a {
        padding: 12px 14px 12px 24px;
        font-size: 14px;
    }

        .section-menu-left .menu-item a .text {
            font-size: 14px;
        }

    /* Header Adjustments */
    .header-dashboard .wrap {
        max-width: 100%;
        padding: 0;
    }

        .header-dashboard .wrap .header-left {
            width: 70%;
        }

    .header-dashboard .form-search {
        max-width: 280px;
    }

    /* Profile Section */
    .wg-user {
        width: auto;
        max-width: 200px;
    }

        .wg-user .image {
            width: 36px;
            height: 36px;
        }

    /* Statistics Cards */
    .stat-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 20px;
        border: 1px solid #f1f5f9;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
    }

        .stat-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

    /* Progress Bars */
    .tf-progress-bar {
        height: 6px;
        border-radius: 6px;
    }

    /* Countdown Timer Adjustments */
    .countdown-timer {
        gap: 16px;
    }

    .countdown-item {
        min-height: 90px;
        padding: 16px 12px;
    }

    .countdown-number {
        font-size: 28px;
    }

    /* Token Calculator Improvements */
    .token-calc {
        gap: 12px;
        margin-bottom: 32px;
    }

        .token-calc .token-pay-amount input {
            width: 90px;
            padding: 14px 12px;
            font-size: 14px;
        }

        .token-calc .token-received-amount .token-amount {
            font-size: 24px;
        }

        .token-calc .token-received-amount .token-symbol {
            font-size: 16px;
        }
}

/* Specific Laptop Size Adjustments */
@media (min-width: 1024px) and (max-width: 1366px) {
    /* Smaller laptop screens */
    .main-content-inner {
        padding: 20px 24px;
    }

    .dashboard-main-grid {
        grid-template-columns: 1fr 350px;
        gap: 24px;
    }

    .wg-box.token-sales-progress,
    .wg-box.token-calculator {
        max-width: 320px !important;
    }

    .chart-container {
        height: 320px;
    }

    .cards-row {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 16px;
    }
}

@media (min-width: 1367px) and (max-width: 1800px) {
    /* Larger laptop/desktop screens */
    .main-content-inner {
        padding: 32px 40px;
    }

    .icon-size {
        padding: 7px;
    }

    .icon-size-black {
        padding: 7px;
    }


    .dashboard-main-grid {
        grid-template-columns: 1fr 400px;
        gap: 40px;
    }

    

    .chart-container {
        height: 450px;
    }

    .cards-row {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }

    /* Enhanced spacing */
    .wg-card {
        padding: 24px;
    }

    .countdown-item {
        min-height: 100px;
        padding: 20px 16px;
    }

    .countdown-number {
        font-size: 32px;
    }
}

/* Fix for specific dashboard elements */
.dashboard-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Transaction table responsive improvements */
@media (min-width: 1024px) {
    .table.tnx-table {
        table-layout: fixed;
        width: 100%;
    }

        .table.tnx-table thead th:first-child,
        .table.tnx-table tbody td:first-child {
            width: 20%;
        }

        .table.tnx-table thead th:nth-child(2),
        .table.tnx-table tbody td:nth-child(2) {
            width: 15%;
        }

        .table.tnx-table thead th:nth-child(3),
        .table.tnx-table tbody td:nth-child(3) {
            width: 20%;
        }

        .table.tnx-table thead th:nth-child(4),
        .table.tnx-table tbody td:nth-child(4) {
            width: 25%;
        }

        .table.tnx-table thead th:nth-child(5),
        .table.tnx-table tbody td:nth-child(5) {
            width: 12%;
        }

        .table.tnx-table thead th:nth-child(6),
        .table.tnx-table tbody td:nth-child(6) {
            width: 8%;
        }
}

/* Utility classes for laptop optimization */
.laptop-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.laptop-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.laptop-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Sticky elements for better UX */
.sticky-sidebar {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* Improved scrollbars for laptop */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--Primary);
    border-radius: 3px;
}

    .custom-scrollbar::-webkit-scrollbar-thumb:hover {
        background: var(--YellowGreen);
    }

/* CSS-only fixes for dropdown z-index issues in user table */

/* Fix table wrapper overflow and z-index */
.users-table-wrapper {
    border-radius: 16px !important;
    border: 1px solid #f1f5f9;
    background: var(--White);
    overflow: visible !important;
    position: relative;
    z-index: 1;
}

/* Ensure table doesn't clip dropdown */
.users-data-table {
    position: relative;
    z-index: 1;
    overflow: visible !important;
    border-collapse: separate;
    border-spacing: 0;
}

/* Table body and rows */
.users-table-body {
    position: relative;
    z-index: 1;
}

    .users-table-body tr {
        position: relative;
        z-index: 1;
    }

/* Actions cell must allow overflow */
.users-actions-cell {
    text-align: center;
    position: relative;
    overflow: visible !important;
    z-index: 1;
}

/* All table cells should not clip content */
.users-table-body td {
    overflow: visible !important;
    position: relative;
    z-index: 1;
}

    /* Specific fix for last column */
    .users-table-body td:last-child {
        overflow: visible !important;
        z-index: 2;
    }

/* Dropdown wrapper positioning */
.users-actions-dropdown {
    position: relative;
    display: inline-block;
    z-index: 10;
}

/* Dropdown trigger button */
.users-dropdown-trigger {
    position: relative;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--Primary);
    color: var(--White);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

/* Dropdown icon with lower z-index than menu */
.users-dropdown-icon {
    position: relative;
    z-index: 50;
    pointer-events: none;
}

/* When dropdown is shown, keep trigger below menu */
.users-actions-dropdown:hover .users-dropdown-trigger {
    z-index: 50;
}

.users-actions-dropdown:hover .users-dropdown-icon {
    z-index: 50;
}

/* Increase wrapper z-index on hover */
.users-actions-dropdown:hover {
    z-index: 1000;
}

/* Table row hover state should not interfere */
.users-table-body tr:hover .users-actions-dropdown {
    z-index: 1001;
}

/* Dropdown menu with very high z-index */
.users-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    min-width: 160px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    z-index: 9999 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
    margin-top: 8px;
    overflow: visible;
    pointer-events: none;
    /* Ensure dropdown appears above trigger */
    top: calc(100% + 4px);
}

    /* Show dropdown on hover - REMOVED FOR CLICK-BASED */
    /* .users-actions-dropdown:hover .users-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 9999 !important;
} */

    /* Keep dropdown visible when hovering over the menu itself - REMOVED */
    /* .users-dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 9999 !important;
} */

    /* Click-based dropdown activation using class */
    .users-dropdown-menu.users-dropdown-show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
        z-index: 9999 !important;
    }

/* Pure CSS alternative using focus (make trigger focusable) */
.users-dropdown-trigger {
    position: relative;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--Primary);
    color: var(--White);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    outline: none;
}

    /* Focus-based dropdown (pure CSS) */
    .users-dropdown-trigger:focus + .users-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        z-index: 9999 !important;
    }

/* Arrow indicator */
.users-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
    z-index: 10000;
}

/* Dropdown items */
.users-dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 10000;
}

.users-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    z-index: 10000;
}

    .users-dropdown-item:hover {
        background: #f3f4f6;
        color: #1f2937;
        text-decoration: none;
    }

/* Container-level overflow fixes */
.users-table-page,
.users-table-container,
.users-table-card {
    overflow: visible !important;
}

.users-table-inner {
    overflow: visible !important;
    position: relative;
}

/* Force visibility for any parent containers */
.wg-box,
.main-content,
.main-content-inner {
    overflow: visible !important;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .users-dropdown-menu {
        right: -8px;
        min-width: 140px;
        z-index: 9999 !important;
    }

    .users-table-wrapper {
        overflow-x: auto !important;
        overflow-y: visible !important;
    }
}

/* Alternative: Click-based dropdown using :target pseudo-class */
.users-dropdown-menu.show,
.users-dropdown-menu:target {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    z-index: 9999 !important;
}

/* Focus-based activation */
.users-dropdown-trigger:focus + .users-dropdown-menu,
.users-dropdown-trigger:active + .users-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 9999 !important;
}

/* Mobile Transaction Table Complete Fix */
@media (max-width: 768px) {
    /* Force container to not clip content */
    .wg-box.style-1 {
        padding: 12px 8px !important;
        overflow: visible !important;
    }

    /* Table wrapper with proper scrolling */
    .table--wrapper {
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch !important;
        margin: 0 -8px !important;
        padding: 0 8px !important;
        border-radius: 12px !important;
        border: 1px solid #f1f5f9 !important;
        background: #ffffff !important;
    }

    /* Force table to full width with scroll */
    .table.tnx-table {
        width: 100% !important;
        min-width: 750px !important;
        table-layout: fixed !important;
        border-collapse: separate !important;
        border-spacing: 0 !important;
        margin: 0 !important;
    }

        /* Header styling - FORCE VISIBILITY */
        .table.tnx-table thead {
            display: table-header-group !important;
            background: linear-gradient(135deg, var(--Primary) 0%, #2a1f3d 100%) !important;
            border-radius: 12px 12px 0 0 !important;
            position: relative !important;
            z-index: 1 !important;
        }

            .table.tnx-table thead tr {
                display: table-row !important;
            }

            .table.tnx-table thead th {
                display: table-cell !important;
                padding: 14px 8px !important;
                font-size: 11px !important;
                font-weight: 700 !important;
                color: #ffffff !important;
                text-transform: uppercase !important;
                letter-spacing: 0.5px !important;
                border: none !important;
                text-align: center !important;
                vertical-align: middle !important;
                white-space: nowrap !important;
                background: transparent !important;
            }

                /* Specific column widths and titles */
                .table.tnx-table thead th:nth-child(1) {
                    width: 140px !important;
                    min-width: 140px !important;
                }

                .table.tnx-table thead th:nth-child(2) {
                    width: 100px !important;
                    min-width: 100px !important;
                }

                .table.tnx-table thead th:nth-child(3) {
                    width: 120px !important;
                    min-width: 120px !important;
                }

                .table.tnx-table thead th:nth-child(4) {
                    width: 200px !important;
                    min-width: 200px !important;
                }

                .table.tnx-table thead th:nth-child(5) {
                    width: 90px !important;
                    min-width: 90px !important;
                    text-align: center !important;
                }

        /* Table body styling */
        .table.tnx-table tbody {
            display: table-row-group !important;
            background: #ffffff !important;
        }

            .table.tnx-table tbody tr {
                display: table-row !important;
                border-bottom: 1px solid #f8fafc !important;
                transition: all 0.3s ease !important;
            }

                .table.tnx-table tbody tr:hover {
                    background: #f8fafc !important;
                }

            .table.tnx-table tbody td {
                display: table-cell !important;
                padding: 12px 8px !important;
                border: none !important;
                vertical-align: middle !important;
                font-size: 12px !important;
                color: #1f2937 !important;
                text-align: center !important;
                white-space: nowrap !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
            }

                /* Token amount column (first) */
                .table.tnx-table tbody td:first-child {
                    width: 140px !important;
                    text-align: left !important;
                    font-weight: 700 !important;
                    font-size: 14px !important;
                    color: var(--Black) !important;
                    position: relative !important;
                    padding-right: 45px !important;
                }

                    /* TOKENS badge */
                    .table.tnx-table tbody td:first-child::after {
                        content: "TOKENS" !important;
                        position: absolute !important;
                        right: 4px !important;
                        top: 50% !important;
                        transform: translateY(-50%) !important;
                        background: #a0bcfa !important;
                        color: var(--Primary) !important;
                        padding: 2px 6px !important;
                        border-radius: 8px !important;
                        font-size: 8px !important;
                        font-weight: 700 !important;
                        text-transform: uppercase !important;
                        letter-spacing: 0.3px !important;
                        white-space: nowrap !important;
                    }

                /* USD amount column (second) */
                .table.tnx-table tbody td:nth-child(2) {
                    width: 100px !important;
                    font-weight: 600 !important;
                    font-size: 13px !important;
                    color: var(--Success, #22c55e) !important;
                }

                /* User name column (third) */
                .table.tnx-table tbody td:nth-child(3) {
                    width: 120px !important;
                    text-align: center !important;
                    font-weight: 600 !important;
                    color: #1f2937 !important;
                    font-size: 12px !important;
                }

                /* Email column (fourth) */
                .table.tnx-table tbody td:nth-child(4) {
                    width: 200px !important;
                    text-align: center !important;
                    color: var(--Gray) !important;
                    font-size: 11px !important;
                    white-space: normal !important;
                    word-break: break-word !important;
                    overflow: hidden !important;
                    text-overflow: ellipsis !important;
                    max-width: 180px !important;
                }

                /* Status column (fifth) */
                .table.tnx-table tbody td:nth-child(5) {
                    width: 90px !important;
                    text-align: center !important;
                    padding: 8px 4px !important;
                }

    /* Status badges mobile styling */
    .status-completed,
    .status-pending,
    .status-failed {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 4px 8px !important;
        border-radius: 12px !important;
        font-size: 9px !important;
        font-weight: 600 !important;
        min-width: 50px !important;
        white-space: nowrap !important;
    }

    /* Custom scrollbar */
    .table--wrapper::-webkit-scrollbar {
        height: 6px !important;
    }

    .table--wrapper::-webkit-scrollbar-track {
        background: #f1f5f9 !important;
        border-radius: 3px !important;
    }

    .table--wrapper::-webkit-scrollbar-thumb {
        background: var(--Primary) !important;
        border-radius: 3px !important;
    }
}

/* Even smaller mobile screens */
@media (max-width: 480px) {
    .table.tnx-table {
        min-width: 700px !important;
    }

        .table.tnx-table thead th {
            padding: 12px 6px !important;
            font-size: 10px !important;
        }

        .table.tnx-table tbody td {
            padding: 10px 6px !important;
            font-size: 11px !important;
        }

            .table.tnx-table tbody td:first-child::after {
                font-size: 7px !important;
                padding: 2px 4px !important;
            }

    .d-flex {
        display: flex !important;
        justify-content: center;
    }
}

.buy-tokens {
    background-color: #161326 !important;
    background: #161326 !important;
    color: white !important;
    display: flex;
    justify-content: center;
}

@media (min-width: 1800px) and (max-width: 1920px) {

}


/* Fix column alignments to match headers */
.users-table-body td:nth-child(1) {
    text-align: left !important;
    padding-left: 16px !important;
}

.users-table-body td:nth-child(2) {
    text-align: left !important;
    padding-left: 16px !important;
}

.users-table-body td:nth-child(3) {
    text-align: center !important;
}

.users-table-body td:nth-child(4) {
    text-align: center !important;
}

.users-table-body td:nth-child(5) {
    text-align: right !important;
    padding-right: 16px !important;
}

.users-table-body td:nth-child(6) {
    text-align: right !important;
    padding-right: 16px !important;
}

.users-table-body td:nth-child(7) {
    text-align: center !important;
}

/* Ensure consistent column widths */
.users-data-table {
    table-layout: fixed !important;
}

/* Adjust header alignment to match */
.users-header-cell:nth-child(1),
.users-header-cell:nth-child(2) {
    text-align: left !important;
}

.users-header-cell:nth-child(3),
.users-header-cell:nth-child(4),
.users-header-cell:nth-child(7) {
    text-align: center !important;
}

.users-header-cell:nth-child(5),
.users-header-cell:nth-child(6) {
    text-align: right !important;
}

/* Fix padding consistency */
.users-table-body td,
.users-header-cell {
    padding: 16px 12px !important;
    vertical-align: middle !important;
}



.label-style {
    flex: 0 0 0px !important;
}