@import url("fonts.css");

:root {
  --primary-font: "Poppins", sans-serif, Arial, Helvetica;
  --secondary-font: "Montserrat", sans-serif, Arial, Helvetica;
  --main-font: "Future Earth", sans-serif, Arial, Helvetica;

  /* Font weight variables */
  --font-thin: 100;
  --font-extra-light: 200;
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-extra-bold: 800;
  --font-black: 900;

  /* Common font combinations */
  --heading-font: "Montserrat", sans-serif, Arial, Helvetica;
  --body-font: "Poppins", sans-serif, Arial, Helvetica;
  --accent-font: "Future Earth", sans-serif, Arial, Helvetica;
  --monospace-font: "Consolas", "Monaco", "Courier New", monospace;
}

:root {
  --primary-teal: #22D3EE;
  --primary-cyan: #06B6D4;
  --primary-blue: #3B82F6;
  --primary-dark-blue: #2563EB;

  --brand-gradient: linear-gradient(135deg, #22D3EE, #2563EB);

  --card-bg: #0F172A;
  --input-bg: #111827;
  --border-glow: rgba(34, 211, 238, 0.4);
}

body {
  background: #050718 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  font-family: var(--primary-font);
}
/* Mobile frame wrapper */
.mobile-container {
  width: 380px;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow: scroll;
  border: 1px solid #1E293B;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.15);
}
.auth-container {
  background-size: cover;
}
.login-logo{width: 350px; height: 350px;}
.logo{width: 50px; height: 50px;}
.auth-container .register-input {
  border-radius: 12px;
  background: #111827;
  border: 1.5px solid #3B82F6;
  width: 100%;
  padding: 15px;
  font-size: 14px;
  color: #3387FF;
}

.auth-container .register-input::placeholder {
  font-size: 14px;
  color: #6179AB;
}

.home-container {
  /* background: url("../images/home_bg.png") no-repeat center center; */
  background-size: cover;
}

::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none;
  /* hides scrollbar */
}

/* For IE/Edge (legacy) */
html {
  -ms-overflow-style: none;
  /* IE/Edge */
}


/* Top bar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.deposit_modal input,
.withdraw_modal input {
  border-radius: 12px;
  background: #111827;
  letter-spacing: -0.4px;
  border: 1px solid #3B82F6;
  color: #3387FF;
}
.deposit_modal input:focus,
.withdraw_modal input:focus {
  background: #111827;
  border: 1px solid #22D3EE;
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.4);
}
.wallet-icon {
  width: 50px;
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.8));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.connect-btn {
  background: linear-gradient(135deg, #22D3EE, #2563EB);
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 70px;
  cursor: pointer;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(34, 211, 238, 0.5);
}

.connect-btn:hover {
  opacity: 0.9;
}
/* Language Dropdown */
.lang-select {
  background: #061128;
border: 1px solid #1E62FD;
  box-shadow: inset 0px 0px 8.6px 4px rgba(25, 81, 209, 0.62);
  color: #FFFFFF;
  border-radius: 17px;
  padding: 5px 35px 5px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  width: auto;
  appearance: none;
  background-image: url("../images/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
/* .lang-select:hover,
.lang-select:focus {
  border: 1px solid #22D3EE;
} */

.brand-name {
  font-weight: 600;
  font-size: 15px;
   background: linear-gradient(90deg, #22D3EE 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-emphasis-color: transparent;
}

.modal-dialog {
  width: 390px;
}

.customModal1 .flag {
  width: 24px;
  height: 24px;
}

.customModal1 .modal-dialog {
  margin-bottom: 0px;
}

.customModal1 .modal_layout {
  height: 100%;
  display: flex;
  align-items: end;
}
.sidebar_language .modal-content {
  background: #181105;
   box-shadow: 0 0 8px var(--border-glow);
}
.sidebar_language .modal-header {
   border-bottom: 1px solid var(--primary-teal);
}
.customModal1 .modal-content {
  background: #1D263B;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
}
.customModal1 .modal-header {
  border-bottom: 1px solid #1E293B;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 30px 30px 0px 0px;
}

.customModal1 .modal-title {
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
}

.customModal1 .modal-header .btn-close {
  margin: 0;
}

.verifyPassword .modal_layout {
  align-items: center !important;
}

.verifyPassword .modal-content {
  border-radius: 15px 15px 15px 15px;
}

.ModalReferral .modal_layout {
  align-items: center !important;
}

.ModalReferral .modal-content {
  background: #1D263B;
box-shadow: inset 0px 0px 8px rgba(50, 181, 242, 0.25);
  border-radius: 15px 15px 15px 15px;
  border-radius: 12px;
}

.ModalReferral .modal-header {
  background: transparent;
  border-bottom: 1px solid var(--primary-teal);
}

/* Language Options */
.language-option, .sidebar_language .language-option{ background: #111827;
  display: flex;
  align-items: center;
  padding: 14px 20px;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  margin: 10px;
  border-radius: 12px;
  border: 1px solid #1E293B;
}
/* .sidebar_language */
.language-option.active {
   background: #0F172A;
  border: 1px solid #22D3EE;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.4);
  justify-content: space-between;
}

.language-option.active .select_dot {
  display: block;
  background: linear-gradient(90deg, #22D3EE, #2563EB);
  box-shadow: inset 0px 1px 1px 0px rgba(34, 211, 238, 0.2);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.language-option .select_dot {
  display: none;
}

.modal_layout {
  display: flex;
  align-items: flex-end;
}

.modal-btn-close {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.modal-header .first-block {
  width: 24px;
  height: 24px;
}

/* Dark Input Styling */
.custom_input {
  border-radius: 12px;
  background: #111827;
  padding: 12px 16px;
  color: #3387FF;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #3B82F6;
  transition: border 0.3s, box-shadow 0.3s;
}

.custom_input::placeholder {
  color: #6179AB;
  font-size: 14px;
  font-weight: 500;
}

input:focus-visible {
  outline: none;
}
.input-1 {
  color: #3387FF;
}

.input-1:focus {
  color: #3387ff;
}

.input-2 {
  background: rgba(35, 40, 56, 0.95);
box-shadow: inset 0px 0px 8px rgba(50, 181, 242, 0.25);
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 14px;
  color:#3387FF; border: none;
}
.input-2:focus {
   background: #111827;
  border: 1px solid #3B82F6;
  box-shadow: inset 0px 0px 8px 0px #32B5F240;
}
.input-2::placeholder {
  font-size: 14px;
  color: #6179AB;
}
.form-label {
  color: #bbbbbb;
}

/* Connect Button */
.button-1 {
  background: linear-gradient(135deg, #22D3EE, #2563EB); box-shadow: 0 0 15px rgba(34, 211, 238, 0.5);
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 16px 50px;
  min-width:70%;
  margin-top: 20px; border-radius: 16px;
  cursor: pointer;
}
.custom-wrapper {
  position: relative;
  width: 100%;
}

.form-label {
  font-size: 14px;
}

.password-wrapper {
  position: relative;
  width: 100%;
}

.custom-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  color: #aaa;
}

/* Eye Icon */
.toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  color: #aaa;
}

/* .toggle-password:hover {
  color: #2c75f4;
} */

.password_toggle_icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.button-close,
.button-close:hover {
  background: #476a96;
  padding: 10px;
  width: 100%;
  border-radius: 12px;
  color: #ffffff;
  font-size: 12px;
}

.button-confirm,
.button-confirm:hover {
  background: linear-gradient(135deg, #22D3EE, #2563EB);
  padding: 10px;
  width: 100%;
  border-radius: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  padding: 13px 0px;
}

.button-account,
.button-account:hover {
    background: #061128;
border: 1px solid #1E62FD;
  box-shadow: inset 0px 0px 8.6px 4px rgba(25, 81, 209, 0.62);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 20px;
  color: #ffffff;
  font-size: 12px;
   border: 1px solid #22D3EE;
}


a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}

.header-box {
  min-height: 110px;
}

.button-withdraw {
  border-radius: 12px;
 box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
  background: #0F172A;
  border: 2px solid #3B82F6;
  font-size: 14px;
  color: #ffffff;
  width: 100%;
  padding: 10px;
  font-weight: 600;
}

.balance-box {background: url(./../images/dashavaliabalback.png) no-repeat center/cover;
  width: 325px;
  color: #fff;
  text-align: center;
  min-height: 140px;
  margin-top: 20px !important;
}

.transaction-balance-box {
  position: relative;
  margin-top: 30px !important;
  padding: 30px 0px;
}

.transaction-balance-box .transaction_bg_2 {
  position: absolute;
  right: 0px;
  top: -50px;
}

.balance-label {
  font-size: 14px;
}

.balance-value {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0px;
}

.balance-value span {
  font-size: 16px;
  font-weight: 600;
  margin-left: 3px;
}
.investment-box{
  position: relative;
  padding: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
border: 1px solid rgba(41, 57, 90, 0.68);
box-shadow: inset 0px 0px 32px #3AAAF5;
  border-radius: 16px;
  overflow: hidden;
}

.investment-box .first-block {
  padding-top: 10px;
  padding-left: 20px;
  align-content: center;
}

.investment-box .second-block {
  padding: 10px 10px 0px 0px !important;
}

.investment-label {
  font-size: 14px;
  margin-bottom: 0px;
}

.investment-value {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0px;
  margin-top: 15px;
}

.investment-value span {
  font-size: 16px;
  font-weight: 600;
  margin-left: 3px;
}

.investment-percentage {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.investment-percentage span {
  font-size: 12px;
  color: #4AB5FD !important;
  background: linear-gradient(90deg, #22D3EE 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-left: 3px;
}

.investment-btn {
  border-radius: 8px;
   background: rgba(0, 0, 0, 0.72);
border: 1px solid rgba(41, 57, 90, 0.68);
box-shadow: inset 0px 0px 32px #3AAAF5;
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

/* Coin image */
.coin-image img {
  width: 78px; height: 78px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.footer-menu {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 5%);
  max-width: 380px;
  background: #1D263B;
  border-radius: 20px 20px 0px 0px;
  display: flex;
  justify-content: space-around;
  padding: 20px 5px;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.25);
  backdrop-filter: blur(10px);
  gap: 8px;
}
.menu-item {
  flex: 1;
  text-align: center;
  color: #94A3B8;
  text-decoration: none;
  font-size: 12px;
  padding: 8px 0;
  transition: all 0.3s ease;
  justify-items: center;
}

.menu-item img {
  display: block;
  margin-bottom: 5px;
}

/* Active state */
.menu-item.active {
 color: #22D3EE;
}
/* .announcement_modal .modal-content{width: 345px;} */
.announcement_modal .modal_layout {
  align-items: center !important;
}

.announcement_modal .modal-content {
  border-radius: 16px;
  background: #0F172A;
  border: 2px solid #3B82F6;
  margin: 20px 0px; box-shadow: 0 0 20px rgba(34, 211, 238, 0.25);
}

.announcement_modal .modal-dialog {
  max-height: 100vh;
  overflow: auto;
}

.announcement-header {
  width: auto;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 600;
  padding: 6px 18px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(90deg, #22D3EE 0%, #2563EB 100%);
  font-size: 16px;
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.6);
}

.announcement-close-btn {
  justify-self: flex-end;
}

.announcement-close-btn {
  width: 32px; display: flex; justify-content: center; align-items: center;
  height: 32px; background: #111827; padding: 5px; border-radius: 50px;
}

.announcement_not_found {
  text-align: center;
}

.announcement_not_found img {
  width: 100px;
  height: 100px;
}

.announcement_not_found .font-14 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.announcement_list {
 background: rgba(15, 23, 42, 0.6);
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #3B82F6;
  margin: 10px 0px;
  display: block;
  color: #fff;
  cursor: pointer;
}

.announcement_list .title {
  font-size: 14px;
}

.announcement_list .date {
  font-size: 12px;
  color: #94A3B8;
  text-align: right;
  margin-top: 5px;
}

.announcement_modal_detail .modal_layout {
  align-items: center !important;
}

.announcement_modal_detail .modal-content {
  border-radius: 15px 15px 15px 15px;
  background: #0F172A;
  border: 1px solid #3B82F6;
  margin: 20px 0px; box-shadow: 0 0 20px rgba(34, 211, 238, 0.25);
}

.folder-modal {
  position: relative;
  border: 2px solid #3B82F6;
  background: #111827;
  border-radius: 18px;
  padding: 18px 16px 16px;
  min-height: 700px;
  color: #fff;
  background-size: contain;
  overflow: auto;
}

.folder-label {
  position: absolute;
  top: 10px;
  left: 22px;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 14px;
}

.folder-close {
  width: 32px;
  height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
     background: #0F172A;
    padding: 5px;
    border-radius: 50px;
  position: absolute;
  top: 5px;
  right: 12px;
  text-align: center;
  cursor: pointer;
}
.modal-dialog-scrollable .modal-content {
  max-height: 190%;
}
.folder-body {
  margin-top: 40px;
  max-height: max-content;
  overflow-y: auto;
  padding: 15px;
}

.folder-body::-webkit-scrollbar {
  width: 6px;
}

.folder-body::-webkit-scrollbar-thumb {
  background: rgba(34, 211, 238, 0.6);
  border-radius: 6px;
}

.folder-body div {
  padding-block: 10px;
}

.folder-body .detail-title {
  font-size: 14px;
}

.folder-body .detail-date {
  font-size: 12px;
}

.folder-body .detail-desc p {
  font-size: 12px;
  line-height: 20px;
}

.deposit_label {
  font-size: 14px;
}

.deposit_amount {
  position: relative;
  width: 100%;
}

.deposit_usdt {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #22D3EE;
}

.withdraw_label {
  font-size: 14px;
}

.withdraw_amount {
  position: relative;
  width: 100%;
}

.withdraw_usdt {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 12px;
  color: #22D3EE;
}

.withdrow_balance {
  font-size: 14px;
}

.withdrow_balance .amount {
  font-size: 14px;
  background: linear-gradient(90deg, #22D3EE 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #0F172A;
  border-left: 1px solid #3B82F6;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  overflow-y: auto;
}

/* Sidebar Active */
.sidebar.active {
  right: 0;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}
.sidebar .card {
  background: linear-gradient(178.42deg, rgba(0, 0, 0, 0) 11.89%, rgba(0, 0, 0, 0.624726) 37.81%, rgba(0, 0, 0, 0.9) 98.61%), url(444467);
  border-radius: 0px;
  padding: 30px 10px;
  text-align: center;
  color: white;
  width: 100%;
}

.sidebar .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
}

.sidebar .avatar img {
  width: 100%;
  height: 100%;
}

.sidebar .username {
  font-size: 14px;
  margin-bottom: 8px;
}

.sidebar .status {
  display: inline-block;
  background: transparent;
   color: #22D3EE;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 20px;
  width: fit-content;
  align-self: anchor-center;
  border: 1px solid #22D3EE;
}

.sidebar .info,
.sidebar .info a {
  font-size: 12px;
  display: flex;
  align-self: flex-start;
  align-items: center;
}

.sidebar .info span {
  margin-left: 5px;
}

.sidebar .info span img {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  margin-bottom: 3px;
}

/* .sidebar .info a {
    text-decoration: none;
} */

.sidebar .icon {
  font-size: 16px;
  cursor: pointer;
}

/* Menu Items */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

.sidebar ul li {
  cursor: pointer;
  transition: background 0.2s;
}

.sidebar ul li a {
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #fff;
  font-size: 14px;
}

.sidebar ul li:hover {
  background: rgba(34, 211, 238, 0.08);
}

.sidebar .first-block,
.sidebar .second-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar .first-block img,
.sidebar .second-block img {
  width: 20px;
  height: 20px;
}

.account-box {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 20px 10px;
}

.slider-button-account,
.slider-button-account:hover {
  border-radius: 8px;
  background: #1B1E23;
box-shadow: inset 0px 0px 12px rgba(38, 111, 222, 0.61);
  padding: 5px 10px;
  color: #ffffff;
  font-size: 12px;
  border: 2px solid #3B82F6;
  padding: 9px 13px;
}

.disconnect-btn {
  margin: 5px 20px 25px 20px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: bold;
 background: linear-gradient(90deg, #22D3EE, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 20px;
}

.section-title::before,
.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
   background: linear-gradient(90deg, #22D3EE 0%, #2563EB 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
}

.section-title::after {
  transform: scaleX(-1);
  /* mirror the shape */
}
.investhistory-header {
  font-size: 16px;
  font-weight: 600;
}
.custom-table-main {
  display: flex;
  justify-content: center;
}

.custom-table {
  width: 90%;
  max-width: 800px;
  border-collapse: separate;
  border-spacing: 0 15px;
  color: #fff;
}

.custom-table thead tr {
  color: #1A99DD;
  text-align: left;
  border: 2px solid #1E293B;
  border-radius: 5px; background: linear-gradient(90deg, rgba(83, 134, 254, 0.16) 0%, rgba(50, 181, 242, 0.16) 100%);
}
.custom-table thead th {
  padding: 10px;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 0px;
  font-weight: 400;
   color: #ffffff;
}
.custom-table tbody tr {
  border-radius: 16px; background: rgba(55, 63, 84, 0.32);
box-shadow: inset 0px 0px 8px rgba(50, 181, 242, 0.25);
}
.custom-table tbody td {
  padding: 10px;
}

.custom-table tbody tr td:first-child {
  border-radius: 12px 0 0 12px;
  text-align: center;
}

.custom-table tbody tr td:last-child {
  border-radius: 0 12px 12px 0;
  text-align: right;
}
.custom-table tbody tr {
  font-size: 12px;
  font-weight: 500;
}
.transaction_not_found {
  text-align: center;
}

.transaction_not_found img {
  width: 100px;
  height: 100px;
}

.transaction_not_found .font-14 {
  font-size: 14px;
  color: #FFFFFF;
}

.invest_box {
  position: relative;
}

.invest_btn_box {
  background: linear-gradient(90deg, #22D3EE 0%, #2563EB 100%);
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.4);
  padding: 5px 10px;
  width: auto;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

.invest_label {
  font-size: 12px;
}

.invest_title_row a {
   color: #22D3EE;
  font-size: 12px;
  font-weight: 500;
}

.invest_title_row a img {
  width: 12px;
  height: 12px;
}

.third-space {
  width: 24px;
  height: 24px;
}

.invest_td_1 {
  text-align: left !important;
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
}

.invest_td_1 .date {
  color: #22D3EE;
  font-size: 12px;
}

.invest_td_2 {
  color: #22D3EE;
  font-size: 16px;
  font-weight: 600;
}

.invest_td_3 {
  color: #22c55e !important;
  font-size: 10px;
}

.invest_td_3 img {
  width: 10px;
  height: 10px;
}

.invest_td_3.invest_success {
  color: #27cf2c !important;
  font-size: 13px;
}

.invest_td_3.invest_failure {
  color: #f5393c !important;
  font-size: 13px;
}

.invest_td_3.under_review {
  color: #f58139 !important;
  font-size: 13px;
}

.margin-bottom-100 {
  margin-bottom: 100px;
}

.friends_list_1 {
  margin: 20px 0px 15px 0px;
  display: flex;
  align-items: center;
  font-size: 12px;
  justify-content: space-between;
}

.friends_list_1 .label_text {
  display: flex;
  font-size: 12px;
  color: #b0b0b0;
  font-weight: 600;
}

.friends_list_1 .label_text span {
  color: #6491C0;
}

.friends_list_2 {
  margin: 10px 0px 0px 0px;
}

.friends_list {
  margin: 30px 0px 0px 0px;
}

.friends_list .tab-container {
  display: flex;
  background: rgba(55, 63, 84, 0.32);
box-shadow: inset 0px 0px 8px rgba(50, 181, 242, 0.25);
  padding: 6px;
  border-radius: 12px;
}

.friends_list .tab {
  flex: 1;
  padding: 12px 0px;
  border-radius: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #94A3B8;
  cursor: pointer;
  transition: all 0.3s ease;
}

.friends_list .tab.active {
  color: #ffffff;
  border-radius: 12px;
  background: linear-gradient(90deg, #22D3EE 0%, #2563EB 100%);
}

.friends_list .tab-content {
  display: none;
}

.friends_list .tab-content.active {
  display: block;
}

.friends_list_not_found {
  text-align: center;
}

.friends_list_not_found img {
  width: 100px;
  height: 100px;
}

.friends_list_not_found .font-14 {
  font-size: 14px;
  color: rgb(255 255 255 / 60%);
}

.friends_list .card-list {
  width: 100%;
  max-width: 600px;
}

.friends_list .card {
  display: flex;
  align-items: center;
  flex-direction: row;
  background: linear-gradient(90deg, rgba(83, 134, 254, 0.2) 0%, rgba(50, 181, 242, 0.2) 100%);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
}

.friends_list .avatar {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 8px;
   border: 2px solid #3B82F6;
}

.friends_list .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.friends_list .badge {
  position: absolute;
  bottom: -8%;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(0 0 0 / 55%);
  color: #fff;
  font-size: 8px;
  padding: 4px 8px;
  border-radius: 0px;
  width: 100%;
  height: 30px;
  font-weight: 500;
}

.friends_list .info {
  display: flex;
  flex-direction: column;
}

.friends_list .info .id {
  color: #22D3EE;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 12px;
}

.friends_list .info .time {
  font-size: 10px;
  font-weight: 600;
  color: #94A3B8;
}

.friends_list .tree {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.friends_list {
  --avatar-size: 60px;
  --pad-left: 60px;
  --dot-size: 12px;
}

.friends_list .tree {
  position: relative;
}

.friends_list .avatar {
  width: var(--avatar-size);
  height: var(--avatar-size);
}

.friends_list .tree > .card:first-child {
  position: relative;
  margin-left: 20px;
  /* same horizontal offset as children */
}

.friends_list .tree > .card:first-child::before {
  content: "";
  position: absolute;
  left: calc(-1 * (25px / 2) - (var(--dot-size) / 2));
  top: calc((var(--avatar-size) / 2) - (var(--dot-size) / 2));
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: linear-gradient(90deg, #22D3EE 0%, #2563EB 100%);
  border: 3px solid rgba(34, 211, 238, 0.3);
  box-sizing: border-box;
}

.friends_list .tree::before {
  content: "";
  position: absolute;
  left: calc(var(--pad-left) / 8 - 1px);
  top: calc(var(--avatar-size) / 2);
  bottom: calc(var(--avatar-size) / 0.9);
  width: 2px;
  background: linear-gradient(90deg, #22D3EE 0%, #2563EB 100%);  border-radius: 2px;
  height: 110px;
}
.friends_list .tree::after {
  content: "";
  position: absolute;
  left: calc(var(--pad-left) / 8); /* vertical line ni position sathe */
  top: calc(
    var(--avatar-size) / 0.43
  ); /* jya thi horizontal line niklavi che */
  width: 53px; /* aadhi line ni lambai */
  height: 2px;
  background: linear-gradient(90deg, #22D3EE 0%, #2563EB 100%);
  border-radius: 2px;
}

.friends_list .tree ul {
  position: relative;
  padding-left: var(--pad-left);
  margin: 0;
  list-style: none;
}

.friends_list .tree ul::before {
  content: "";
  position: absolute;
  left: calc(var(--pad-left) / 2 - 1px);
  top: calc(var(--avatar-size) / 1.3);
  bottom: calc(var(--avatar-size) / 0.9);
  width: 2px;
  background: linear-gradient(90deg, #22D3EE 0%, #2563EB 100%);
  border-radius: 2px;
}

.friends_list .tree li {
  position: relative;
  margin: 18px 0;
}

.friends_list .tree li::before {
  content: "";
  position: absolute;
  left: calc(-1 * (var(--pad-left) / 2));
  top: calc(var(--avatar-size) / 2);
  width: calc(var(--pad-left) / 2);
  height: 2px;
  background: linear-gradient(90deg, #22D3EE 0%, #2563EB 100%);
  border-radius: 2px;
}

.friends_list .tree li::after {
  content: "";
  position: absolute;
  left: calc(-1 * (var(--pad-left) / 2) - (var(--dot-size) / 2));
  top: calc((var(--avatar-size) / 2) - (var(--dot-size) / 2));
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: #22D3EE;
  border: 3px solid rgba(34, 211, 238, 0.3);
  box-sizing: border-box;
}

.show-qrcode {
  width: fit-content;
  padding: 10px;
  background: #ffffff;
  border-radius: 5px;
  justify-self: center;
  margin: 10px;
}

.show-qrcode img {
  width: 120px;
  height: 120px;
  cursor: pointer;
}
.menu_img{width: 24px; height: 24px;}