*:hover,
*:focus {
  outline: none;
}

body {
  margin: 0;
  padding: 0 0 80px;
  position: relative;
  background: #111;
  font-family: var(--primary-400);
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
}

a {
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
}

@font-face {
  font-family: "LexendLight";
  font-display: swap;
  src: url("../fonts/lexend/LexendLight.eot");
  src: url("../fonts/lexend/LexendLight.eot") format("embedded-opentype"), url("../fonts/lexend/LexendLight.woff2") format("woff2"), url("../fonts/lexend/LexendLight.woff") format("woff"), url("../fonts/lexend/LexendLight.ttf") format("truetype"), url("../fonts/lexend/LexendLight.svg#LexendLight") format("svg");
}

@font-face {
  font-family: "LexendRegular";
  font-display: swap;
  src: url("../fonts/lexend/LexendRegular.eot");
  src: url("../fonts/lexend/LexendRegular.eot") format("embedded-opentype"), url("../fonts/lexend/LexendRegular.woff2") format("woff2"), url("../fonts/lexend/LexendRegular.woff") format("woff"), url("../fonts/lexend/LexendRegular.ttf") format("truetype"), url("../fonts/lexend/LexendRegular.svg#LexendRegular") format("svg");
}

@font-face {
  font-family: "LexendMedium";
  font-display: swap;
  src: url("../fonts/lexend/LexendMedium.eot");
  src: url("../fonts/lexend/LexendMedium.eot") format("embedded-opentype"), url("../fonts/lexend/LexendMedium.woff2") format("woff2"), url("../fonts/lexend/LexendMedium.woff") format("woff"), url("../fonts/lexend/LexendMedium.ttf") format("truetype"), url("../fonts/lexend/LexendMedium.svg#LexendMedium") format("svg");
}

@font-face {
  font-family: "LexendSemiBold";
  font-display: swap;
  src: url("../fonts/lexend/LexendSemiBold.eot");
  src: url("../fonts/lexend/LexendSemiBold.eot") format("embedded-opentype"), url("../fonts/lexend/LexendSemiBold.woff2") format("woff2"), url("../fonts/lexend/LexendSemiBold.woff") format("woff"), url("../fonts/lexend/LexendSemiBold.ttf") format("truetype"), url("../fonts/lexend/LexendSemiBold.svg#LexendSemiBold") format("svg");
}

@font-face {
  font-family: "LexendBold";
  font-display: swap;
  src: url("../fonts/lexend/LexendBold.eot");
  src: url("../fonts/lexend/LexendBold.eot") format("embedded-opentype"), url("../fonts/lexend/LexendBold.woff2") format("woff2"), url("../fonts/lexend/LexendBold.woff") format("woff"), url("../fonts/lexend/LexendBold.ttf") format("truetype"), url("../fonts/lexend/LexendBold.svg#LexendBold") format("svg");
}

@font-face {
  font-family: "LexendBlack";
  font-display: swap;
  src: url("../fonts/lexend/LexendBlack.eot");
  src: url("../fonts/lexend/LexendBlack.eot") format("embedded-opentype"), url("../fonts/lexend/LexendBlack.woff2") format("woff2"), url("../fonts/lexend/LexendBlack.woff") format("woff"), url("../fonts/lexend/LexendBlack.ttf") format("truetype"), url("../fonts/lexend/LexendBlack.svg#LexendBlack") format("svg");
}

:root {
  --primary-color: #FFDE26;
  --primary-300: "LexendLight";
  --primary-400: "LexendRegular";
  --primary-500: "LexendMedium";
  --primary-600: "LexendSemiBold";
  --primary-700: "LexendBold";
  --primary-900: "LexendBlack";
}

.common-section {
  padding: 60px 0;
}

.curved-box {
  padding: 20px;
  margin: 15px 0;
  background: var(--color-white);
  border: 1px solid #B9B9BB;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

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

.disabled-btn {
  background: #C7C7C7;
}

button:focus {
  outline: none;
}

.btn {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 700;
  min-height: 45px;
  border: none;
  text-align: center;
  white-space: nowrap;
  color: var(--color-white);
  background: var(--primary-color);
}

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

.btn.focus,
.btn:focus {
  box-shadow: none;
}

.lite-btn {
  background: #FBF8F3;
  color: #E89F72;
}

.lite-btn img {
  margin: 0 10px 0 0;
}

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

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

.primary-btn:hover,
.primary-btn:focus {
  color: var(--color-white);
}

.bordered-btn {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
  background: none;
}

.bordered-btn:hover,
.bordered-btn:focus {
  color: var(--primary-color);
}

.disabled-btn {
  background: #C7C7C7;
  box-shadow: none;
  pointer-events: none;
}

.grey-btn {
  background: #E9E9E9;
  color: #959595;
  box-shadow: none;
}

.grey-btn:hover,
.grey-btn:focus {
  color: #959595;
}

a:hover {
  text-decoration: none;
  color: var(--secondary-color);
}

header {
  background: #222;
}

.container {
  max-width: 440px;
}

.head-main {
  gap: 10px;
  display: flex;
  padding: 0.8rem 0;
  align-items: center;
  justify-content: space-between;
}

.menu_main .menu_toggle_btn {
  background: none;
  padding: 0;
  border: none;
}

.player_card_main {
  border-bottom: 1px solid #333;
  padding: 1rem 0;
}

.player_card_main .player_card {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player_card_main .player_card figure {
  margin: 0;
  width: 56px;
  height: 56px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 2px solid #FFDE26;
  border-radius: 512px;
  -webkit-border-radius: 512px;
  -moz-border-radius: 512px;
  -ms-border-radius: 512px;
  -o-border-radius: 512px;
}

.player_card_main .player_card article .player_name {
  font-family: var(--primary-400);
  color: #DDD;
  background: none;
  padding: 0;
  border: none;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 7px;
}

.player_card_main .player_card article .player_name img {
  width: 10px;
}

.player_status {
  font-family: var(--primary-300);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 4px;
}

.player_status .status_icon {
  width: 12px;
  height: 12px;
  display: inline-block;
  border: 4px solid #595959;
  background: #ddd;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.status_online {
  color: #00FFF6;
}

.status_online .status_icon {
  border: 4px solid #024864;
  background: #00FFF6;
}

.games_main {
  margin: 1rem 0 0;
}

.games_title_main {
  margin: 0 0 1rem;
}

.games_title_main .games_title {
  display: flex;
  align-items: center;
  gap: 40px;
}

.games_title_main .games_title a {
  color: #777;
  font-family: var(--primary-700);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}

.gmaes_card_main .gmaes_card_single {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  background: #1D1C1F;
  margin: 0 0 1rem;
}

.gmaes_card_main .gmaes_card_single .game_video {
  position: relative;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  -o-border-radius: 8px 8px 0 0;
  border-radius: 8px 8px 0 0;
  border: 1px solid #444;
  overflow: hidden;
}

.gmaes_card_main .gmaes_card_single .game_video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gmaes_card_main .gmaes_card_single .game_video .play_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  width: 100px;
  height: 100px;
  padding: 0;
}

.gmaes_card_main .gmaes_card_single .game_video .play_btn img {
  width: 100%;
}

.gmaes_card_main .gmaes_card_single article {
  padding: 20px;
}

.gmaes_card_main .gmaes_card_single article h4 {
  color: #FFDE26;
  font-family: var(--primary-700);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 0.5rem;
}

.gmaes_card_main .gmaes_card_single article h4.game-name-html {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.gmaes_card_main .gmaes_card_single article p,
.gmaes_card_main .gmaes_card_single article .game-desc-html {
  color: #999;
  font-family: var(--primary-400);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0;
  margin: 0;
}

.info_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff7e33;
  color: #FFDE26;
  text-decoration: none;
  font-size: 11px;
  border: 1px solid #FFDE26;
  transition: background 0.2s, color 0.2s;
}

/* When icon is next to title (inside game-name-html): no top margin, small left gap */
h4.game-name-html .info_btn {
  margin-top: 0;
  margin-left: 0.35rem;
}

.info_btn:hover {
  background: #FFDE26;
  color: #1D1C1F;
}

.info_btn:hover svg {
  fill: #1D1C1F;
}

.info_btn .info_btn_icon {
  font-style: normal;
  font-weight: 700;
}

footer {
  border-top: 1px solid #111;
  background: #222;
  box-shadow: 0 -30px 30px 0 rgba(0, 0, 0, 0.5);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}

footer .footer_menu {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0.7rem 0;
}

footer .footer_menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  color: #FFF;
  text-align: center;
  font-family: var(--primary-400);
  text-decoration: none;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  gap: 5px;
  -webkit-transform: all ease 0.3s;
  -ms-transform: all ease 0.3s;
  -moz-transform: all ease 0.3s;
  -o-transform: all ease 0.3s;
  transform: all ease 0.3s;
}

footer .footer_menu a img {
  -webkit-transform: all ease 0.3s;
  -ms-transform: all ease 0.3s;
  -moz-transform: all ease 0.3s;
  -o-transform: all ease 0.3s;
  transform: all ease 0.3s;
}

footer .footer_menu a span {
  display: inline-block;
  width: 100%;
}

footer .footer_menu a:hover {
  color: var(--primary-color);
}

footer .footer_menu a:hover img {
  filter: brightness(0) saturate(100%) invert(85%) sepia(42%) saturate(747%) hue-rotate(2deg) brightness(103%) contrast(103%);
  -webkit-filter: brightness(0) saturate(100%) invert(85%) sepia(42%) saturate(747%) hue-rotate(2deg) brightness(103%) contrast(103%);
}

footer .footer_menu .active {
  color: var(--primary-color);
}

footer .footer_menu .active img {
  filter: brightness(0) saturate(100%) invert(85%) sepia(42%) saturate(747%) hue-rotate(2deg) brightness(103%) contrast(103%);
  -webkit-filter: brightness(0) saturate(100%) invert(85%) sepia(42%) saturate(747%) hue-rotate(2deg) brightness(103%) contrast(103%);
}

.lang_main .lang_btn {
  background: none;
  border: none;
  padding: 0;
  width: 24px;
}

.lang_main .lang_btn img {
  width: 100%;
}

.lang_main .dropdown-menu {
  padding: 0;
  border: none;
  background: #2e2e2e;
  min-width: auto;
  float: right;
}

.lang_main .dropdown-menu .langu_lists {
  margin: 0;
  padding: 0;
}

.lang_main .dropdown-menu .langu_lists li {
  list-style: none;
}

.lang_main .dropdown-menu .langu_lists li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.4rem 0.7rem;
  font-family: var(--primary-400);
  color: #fff;
  font-size: 0.8rem;
}

.lang_main .dropdown-menu .langu_lists li a:hover,
.lang_main .dropdown-menu .langu_lists li a:focus {
  color: var(--primary-color);
  background: #222;
}

.toggle_menu_main {
  overflow: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: -290px;
  width: 290px;
  height: 100%;
  background: rgba(17, 17, 17, 0.9);
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  z-index: 9;
}

.toggle_menu_main .menu_close {
  padding: 0.84rem 1rem;
}

.toggle_menu_main .menu_close .menu_close_btn {
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.toggle_menu_main .player_card_main {
  padding: 1rem;
}

.toggle_menu_main .menu_item_list {
  margin: 2rem 0 0;
  padding: 0 1rem;
}

.toggle_menu_main .menu_item_list ul {
  padding: 0 0 0 3rem;
  margin: 0;
}

.toggle_menu_main .menu_item_list ul li {
  list-style: none;
  margin: 0;
}

.toggle_menu_main .menu_item_list ul li a {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #DDD;
  font-family: var(--primary-300);
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.toggle_menu_main .menu_item_list ul li a .menuLeft {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =========================
   SIDE MENU BASE
========================= */
.side-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu>li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.side-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  color: #fff;
  text-decoration: none;
}

.side-menu a:hover,
.side-menu li.active>a,
.side-menu .menu_dropdown li a.active {
  color: var(--primary-color);
}

.side-menu a:hover img.arrow,
.side-menu li.active>a img.arrow,
.side-menu .menu_dropdown li a.active img.arrow {
  filter: brightness(0) saturate(100%) invert(85%) sepia(42%) saturate(747%) hue-rotate(2deg) brightness(103%) contrast(103%);
  -webkit-filter: brightness(0) saturate(100%) invert(85%) sepia(42%) saturate(747%) hue-rotate(2deg) brightness(103%) contrast(103%);
}

/* Left icon + text */
.menuLeft {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =========================
   DROPDOWN (ACCORDION)
========================= */
.has-dropdown {
  overflow: visible;
}

/* IMPORTANT: do NOT absolute position */
.has-dropdown .menu_dropdown {
  position: static;
  list-style: none;
  /* indentation for submenu */
  padding-left: 50px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* Open state */
.toggle_menu_main .menu_item_list ul li {
  margin: 0;
}

.toggle_menu_main .menu_item_list ul li .menu_dropdown ul li {
  margin: 0 0 15px;
}

.toggle_menu_main .menu_item_list ul li .menu_dropdown li a {
  padding: 0 0 10px 0;
  font-size: 12px;
}

.has-dropdown.is-open .menu_dropdown {
  max-height: 400px;
  /* safe value */
}

/* Dropdown links */
.menu_dropdown li a {
  padding: 10px 0;
  font-size: 14px;
  color: #ccc;
}

/* =========================
   ARROW ROTATION
========================= */
.has-dropdown .arrow {
  transition: transform 0.3s ease;
}

.has-dropdown.is-open .arrow {
  transform: rotate(90deg);
}

/* =========================
   UL RESET (SAFE)
========================= */
/* Only reset first-level UL */
.toggle_menu_main .menu_item_list>ul {
  padding: 0;
  margin: 0;
}

.toggle_menu_main .menu_item_list>ul .has-dropdown .dropdown-toggle::after {
  display: none;
}

.toggle_menu_main.menu_on {
  left: 0;
}

.page_name_main {
  padding: 0.5rem 0 0;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.page_name_main .page_name {
  font-size: 20px;
  color: #fff;
  font-family: var(--primary-500);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.page_name_main .more_link {
  color: #cdcdcd;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4196078431);
}

.page_name_main .more_link img {
  width: 6px;
  margin: 0 0 0 5px;
}

.page_name_main .more_link:hover {
  color: #fff;
}

.back_main {
  border-bottom: 1px solid #333;
  padding: 1rem 0;
}

.back_main a {
  color: #999999;
  font-family: var(--primary-400);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.back_main a img {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
  width: 7px;
  margin-right: 6px;
}

.form-group label {
  color: #999999;
  font-family: var(--primary-400);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.form-control {
  color: #d6d6d6;
  background: #222222 !important;
  border: 1px solid #222222 !important;
}

.form-control:hover,
.form-control:focus {
  box-shadow: none;
  color: #bdbdbd;
}

/* Chrome / Edge / Brave autofill override */
input.form-control:-webkit-autofill,
input.form-control:-webkit-autofill:hover,
input.form-control:-webkit-autofill:focus,
input.form-control:-webkit-autofill:active {
  -webkit-text-fill-color: #bdbdbd !important;
  -webkit-box-shadow: 0 0 0 1000px #222222 inset !important;
  box-shadow: 0 0 0 1000px #222222 inset !important;
  border: 1px solid #222222;
  transition: background-color 5000s ease-in-out 0s;
}

input[type=date] {
  color-scheme: dark;
}

input.form-control[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(0);
  -webkit-filter: invert(0);
}

.btn-primary {
  padding: 0.7rem 1rem;
  font-size: 14px;
  height: auto;
  min-height: auto;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
  background: var(--primary-color);
}

.show>.btn-primary.dropdown-toggle {
  background: var(--primary-color);
}

.card_details_main .single_card {
  background: #222;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  padding: 15px 1rem;
  margin: 0 0 15px;
}

.card_details_main .single_card .card_title {
  color: #999999;
  font-family: var(--primary-400);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.card_details_main .single_card .card_value {
  margin: 0;
  color: #fff;
  font-family: var(--primary-400);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.card_details_main .single_card .card_heading {
  margin: 0;
  color: #fff;
  font-family: var(--primary-400);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.card_details_main .single_card .two_side_values {
  margin: 0.4rem 0;
  padding: 0;
}

.card_details_main .single_card .two_side_values li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #bebebe;
  font-size: 13px;
}

.filter_main {
  margin: 0 0 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: column;
  gap: 5px;
}

.filter_main .form-group {
  margin: 0;
}

.filter_main .form-group .form-control {
  margin: 0;
  min-width: 100%;
  width: auto;
  max-width: 145px;
}

.filter_main .btn-primary {
  padding: 0 1rem;
}
.tabs_content {
  background: #333;
  padding: 1rem;
  border-radius: 0.5rem;
}

.total_lists {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 1rem;
}

.total_lists .card_title {
  font-size: 16px;
  color: #ddd;
}

.total_lists .card_value {
  font-size: 18px;
  color: #ddd;
  font-family: var(--primary-700);
  letter-spacing: 0.1rem;
}

.table thead tr th {
  border: none;
  font-weight: 400;
  color: #fff;
  font-size: 14px;
  background: #222222;
  padding: 0.7rem 1rem;
}

.table thead tr th:nth-child(1) {
  -webkit-border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  -ms-border-radius: 8px 0 0 8px;
  -o-border-radius: 8px 0 0 8px;
  border-radius: 8px 0 0 8px;
}

.table thead tr th:nth-last-child(1) {
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  -ms-border-radius: 0 8px 8px 0;
  -o-border-radius: 0 8px 8px 0;
  border-radius: 0 8px 8px 0;
}

.table tbody tr td {
  white-space: nowrap;
  border: none;
  font-weight: 400;
  color: #c5c5c5;
  font-size: 14px;
  padding: 8px 0.75rem;
}

.table tbody tr td:nth-child(1) {
  -webkit-border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  -ms-border-radius: 8px 0 0 8px;
  -o-border-radius: 8px 0 0 8px;
  border-radius: 8px 0 0 8px;
}

.table tbody tr td:nth-last-child(1) {
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  -ms-border-radius: 0 8px 8px 0;
  -o-border-radius: 0 8px 8px 0;
  border-radius: 0 8px 8px 0;
}

.table tbody tr:nth-child(even) td {
  background: #1d1d1d;
}

.form-note {
  margin: 0 0 1rem;
  color: #999999;
}

.wallet_balance_card {
  background: #222222;
  border-radius: 8px;
  padding: 1rem;
  margin: 0 0 1rem;
}

.wallet_balance_card .title {
  color: #999999;
  font-family: var(--primary-400);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.wallet_balance_card .val {
  margin: 0;
  color: #fff;
  font-family: var(--primary-400);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.agent_lists {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.agent_lists .card_title {
  margin: 0;
}

.btn-eye {
  background: none;
  border: none;
  padding: 0;
  position: absolute;
  top: 5px;
  right: 10px;
}

.btn_footer_links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* Fullscreen preloader — Uiverse.io by alexs_8179 (splendid-squid-28), theme: --primary-color */
#preloader {
  position: fixed;
  inset: 0;
  background: #111;
  --primary-color: #FFDE26;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.uiverse-preloader-art {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

/* Scoped animations (not .container — avoids Bootstrap clash) */
@keyframes uiverse-bounce {

  0%,
  100% {
    translate: 0px 36px;
  }

  50% {
    translate: 0px 46px;
  }
}

@keyframes uiverse-bounce2 {

  0%,
  100% {
    translate: 0px 46px;
  }

  50% {
    translate: 0px 56px;
  }
}

@keyframes uiverse-umbral {
  0% {
    stop-color: #ff7e33;;
  }

  50% {
    stop-color: #FFDE26;
  }

  100% {
    stop-color: #ff7e33;;
  }
}

@keyframes uiverse-particles {

  0%,
  100% {
    translate: 0px 16px;
  }

  50% {
    translate: 0px 6px;
  }
}

#preloader .preloader-particles {
  animation: uiverse-particles 4s ease-in-out infinite;
}

#preloader .preloader-animated-stop {
  animation: uiverse-umbral 4s infinite;
}

#preloader #bounce {
  animation: uiverse-bounce 4s ease-in-out infinite;
  translate: 0px 36px;
}

#preloader #bounce2 {
  animation: uiverse-bounce2 4s ease-in-out infinite;
  translate: 0px 46px;
  animation-delay: 0.5s;
}

.news-table tbody tr {
  cursor: pointer;
}

.news-table tbody tr.read td {
  color: #666;
  /* Darker grey to indicate read state clearly */
}

.news-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
  /* Subtle hover effect */
}

/* Custom styles to match the dark theme in screenshot */
.text-muted {
  color: #a0a0a0 !important;
}

.text-white {
  color: #ffffff !important;
}

/* Exit animation */
#preloader.fade-out {
  animation: fadeOut 0.6s ease forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Custom Pagination Styles - Matching Design */
.custom-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.custom-pagination .pagination-item {
  margin: 0;
}

.custom-pagination .pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  color: #fff;
  font-family: var(--primary-400);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  cursor: pointer;
}

.custom-pagination .pagination-item.active .pagination-link {
  color: #222;
}

.custom-pagination .pagination-item.disabled .pagination-link {
  color: #666;
  cursor: not-allowed;
  opacity: 0.5;
}

.custom-pagination .pagination-item.disabled .pagination-link:hover,
.custom-pagination .pagination-item.disabled .pagination-link:focus,
.custom-pagination .pagination-item:not(.disabled) .pagination-arrow:hover,
.custom-pagination .pagination-item:not(.disabled) .pagination-arrow:focus {
  color: #666;
}

/* Hide arrows for number input globally */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/*# sourceMappingURL=layout.css.map */


