@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;900&display=swap");@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");.dashboard-content-container {
  padding-left: 100px;
  width: 80%;
}.dashboard__content-main {
  padding: 0 10px;
}

/* =====================================================
   WELCOME BANNER
   ===================================================== */
.welcome-banner {
  background: linear-gradient(135deg, #199297 0%, #1ab5a0 100%);
  border-radius: 14px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(25, 146, 151, 0.25);
  position: relative;
  overflow: hidden;
}
.welcome-banner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -5%;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.welcome-banner::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.welcome-banner__left {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1;
}

.welcome-banner__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome-banner__icon i {
  font-size: 26px;
  color: #fff;
}

.welcome-banner__text h1 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.3px;
}
.welcome-banner__text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 2px 0 0;
}

.welcome-banner__user {
  z-index: 1;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 8px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  margin-top: -100px !important;
}
.section-header h2 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}
.section-header .section-badge {
  background: #e6f5f5;
  color: #199297;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================================================
   DUST ALERT
   ===================================================== */
.dust-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fcd34d;
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
}
.dust-alert__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dust-alert__icon i {
  font-size: 20px;
  color: #d97706;
}
.dust-alert__body {
  flex: 1;
  min-width: 0;
}
.dust-alert__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 6px;
}
.dust-alert__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  background: #f59e0b;
  color: white;
  font-size: 11px;
  font-weight: 800;
  border-radius: 20px;
}
.dust-alert__desc {
  font-size: 13px;
  color: #78350f;
  line-height: 1.6;
  margin: 0;
}
.dust-alert__desc strong {
  font-weight: 700;
}
.dust-alert__link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: #f59e0b;
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  align-self: center;
}
.dust-alert__link i {
  font-size: 14px;
}
.dust-alert__link:hover {
  background: #d97706;
}

.dark-mode .dust-alert {
  background: linear-gradient(135deg, rgba(120, 53, 15, 0.2) 0%, rgba(120, 53, 15, 0.1) 100%);
  border-color: rgba(245, 158, 11, 0.3);
  border-left-color: #f59e0b;
}
.dark-mode .dust-alert__title {
  color: #fcd34d;
}
.dark-mode .dust-alert__desc {
  color: #fde68a;
}
.dark-mode .dust-alert__icon {
  background: rgba(245, 158, 11, 0.1);
}
.dark-mode .dust-alert__icon i {
  color: #f59e0b;
}

/* =====================================================
   DUST MODAL
   ===================================================== */
.dust-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: dm-fade 0.15s ease;
}

.dust-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  width: 640px;
  max-width: 95vw;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: dm-slide 0.2s ease;
}
.dust-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
  gap: 12px;
}
.dust-modal__header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dust-modal__header-icon {
  width: 38px;
  height: 38px;
  background: rgba(245, 158, 11, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dust-modal__header-icon i {
  font-size: 20px;
  color: #f59e0b;
}
.dust-modal__title {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}
.dust-modal__subtitle {
  font-size: 12px;
  color: #64748b;
  margin-top: 1px;
}
.dust-modal__count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  background: #f59e0b;
  color: white;
  font-size: 11px;
  font-weight: 800;
  border-radius: 20px;
}
.dust-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s;
}
.dust-modal__close:hover {
  background: #fee2e2;
  color: #ef4444;
}
.dust-modal__body {
  overflow-y: auto;
  padding: 10px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dust-modal__empty {
  text-align: center;
  padding: 48px 16px;
  color: #64748b;
}
.dust-modal__empty i {
  display: block;
  font-size: 32px;
  color: #10b981;
  margin-bottom: 8px;
}
.dust-modal__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.15s;
}
.dust-modal__row:hover {
  border-color: rgba(25, 146, 151, 0.3);
}
.dust-modal__row-asset {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 110px;
  flex-shrink: 0;
}
.dust-modal__network-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  background: rgba(25, 146, 151, 0.08);
  color: #199297;
  border-radius: 20px;
}
.dust-modal__row-mid {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dust-modal__value {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}
.dust-modal__fee {
  font-size: 11px;
  color: #64748b;
}
.dust-modal__fee span {
  font-weight: 600;
  color: #64748b;
}
.dust-modal__wallets {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.dust-modal__wallet-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  min-width: 28px;
}
.dust-modal__wallet-addr {
  font-size: 11px;
  font-family: monospace;
  color: #475569;
  overflow: hidden;
  white-space: nowrap;
  max-width: 360px;
}
.dust-modal__row-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.dust-modal__explorer-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  background: #199297;
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.dust-modal__explorer-btn i {
  font-size: 13px;
}
.dust-modal__explorer-btn:hover {
  background: #137074;
}
.dust-modal__block {
  font-size: 11px;
  color: #64748b;
  white-space: nowrap;
}
.dust-modal__copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}
.dust-modal__copy-btn i {
  font-size: 13px;
}
.dust-modal__copy-btn:hover {
  background: #e2e8f0;
  color: #1e293b;
}
.dust-modal__copy-btn--copied {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.3);
}
.dust-modal__copy-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(25, 146, 151, 0.08);
  color: #199297;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid rgba(25, 146, 151, 0.2);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}
.dust-modal__copy-all-btn i {
  font-size: 14px;
}
.dust-modal__copy-all-btn:hover {
  background: #199297;
  color: white;
  border-color: #199297;
}

@keyframes dm-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes dm-slide {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Dark mode */
.dark-mode .dust-modal {
  background: #1e2433;
}
.dark-mode .dust-modal__header {
  border-color: rgba(255, 255, 255, 0.07);
}
.dark-mode .dust-modal__title {
  color: #e2e8f0;
}
.dark-mode .dust-modal__subtitle {
  color: #64748b;
}
.dark-mode .dust-modal__close {
  background: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
}
.dark-mode .dust-modal__row {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}
.dark-mode .dust-modal__value {
  color: #e2e8f0;
}
.dark-mode .dust-modal__wallet-addr {
  color: #94a3b8;
}

/* =====================================================
   WIDGETS
   ===================================================== */
.widget-container {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 98%;
  overflow-x: auto;
  height: 250px;
  border-top: 1px solid #e0e0e0;
}

.book-balance-table-container {
  background-color: red;
  width: 73vw;
}

/* =====================================================
   PENDING DEPOSITS
   ===================================================== */
.transactions-wallet-direct-pending-container {
  margin-top: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  padding: 20px;
  overflow: hidden;
}

/* =====================================================
   DASHBOARD LAYOUT
   ===================================================== */
.dashboard-container {
  display: flex;
  gap: 24px;
  margin-bottom: 0;
}

.dashboard-left-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.dashboard-right-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 16%;
}

@media (max-width: 1600px) {
  .dashboard-right-container {
    width: 30%;
  }
}.wd-table {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: white;
}
.wd-table .MuiTableContainer-root {
  box-shadow: none;
}
.wd-table .MuiPaper-root {
  box-shadow: none;
  background: transparent;
}
.wd-table .MuiTableHead-root .MuiTableCell-head {
  background: #199297 !important;
  color: white !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 10px 12px !important;
  border-bottom: none !important;
  white-space: nowrap;
}
.wd-table .MuiTableBody-root .MuiTableCell-root {
  padding: 8px 12px !important;
  font-size: 13px !important;
  color: #111827 !important;
  border-bottom: 1px solid #f3f4f6 !important;
  vertical-align: middle !important;
}
.wd-table .MuiTableBody-root .MuiTableRow-root {
  transition: background 0.1s;
}
.wd-table .MuiTableBody-root .MuiTableRow-root:hover {
  background: #f9fafb !important;
}
.wd-table .MuiTablePagination-root {
  border-top: 1px solid #f3f4f6;
  font-size: 12px;
  color: #6b7280;
}

.wd-tx-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(25, 146, 151, 0.08);
  color: #199297;
  text-decoration: none;
  transition: background 0.15s;
  cursor: pointer;
}
.wd-tx-chip i {
  font-size: 14px;
}
.wd-tx-chip:hover {
  background: rgba(25, 146, 151, 0.16);
}

.wd-amount-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
  color: #111827;
}

.wd-client-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: #199297;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.wd-client-btn:hover {
  border-color: #199297;
  background: rgba(25, 146, 151, 0.06);
}

.wd-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s;
}
.wd-details-btn i {
  font-size: 14px;
}
.wd-details-btn:hover {
  border-color: #199297;
  color: #199297;
}

.wd-wallet-addr {
  font-family: "SF Mono", "Consolas", "Monaco", monospace;
  font-size: 12px;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.15s;
}
.wd-wallet-addr:hover {
  color: #199297;
}

.wd-date {
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
}

.wd-aml {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wd-aml__score {
  font-size: 12px;
  font-weight: 700;
}
.wd-aml__pdf {
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.wd-aml__pdf:hover {
  opacity: 1;
}

.wd-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.wd-status i {
  font-size: 13px;
}
.wd-status--approved {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}
.wd-status--rejected {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.wd-status--pending {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.wd-export-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.wd-export-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s ease;
}
.wd-export-btn i {
  font-size: 15px;
}
.wd-export-btn:hover {
  border-color: #199297;
  color: #199297;
  background: rgba(25, 146, 151, 0.04);
}

.wd-checkbox-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #6b7280;
}
.wd-checkbox-row input[type=checkbox] {
  accent-color: #199297;
}

.wd-info-text {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 12px;
}
.wd-info-text b {
  color: #111827;
}

.wd-link-panel {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}
.wd-link-panel__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f3f4f6;
}
.wd-link-panel__header > i {
  font-size: 22px;
  color: #199297;
  margin-top: 1px;
}
.wd-link-panel__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}
.wd-link-panel__subtitle {
  margin: 2px 0 0;
  font-size: 12px;
  color: #9ca3af;
}
.wd-link-panel__field {
  margin-bottom: 14px;
}
.wd-link-panel__label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 6px;
}
.wd-link-panel__label i {
  font-size: 15px;
  color: #9ca3af;
}
.wd-link-panel__textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  color: #111827;
  resize: vertical;
  transition: border-color 0.15s;
  outline: none;
  box-sizing: border-box;
}
.wd-link-panel__textarea::placeholder {
  color: #9ca3af;
}
.wd-link-panel__textarea:focus {
  border-color: #199297;
}
.wd-link-panel__submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: none;
  border-radius: 8px;
  background: #199297;
  color: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.wd-link-panel__submit i {
  font-size: 16px;
}
.wd-link-panel__submit:hover {
  background: #15797d;
}
.wd-link-panel__submit:disabled {
  background: #d1d5db;
  cursor: not-allowed;
}.aml-check-container {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 10px;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.aml-check-options {
  padding-left: 10px;
}

.score-check-container {
  margin-top: 20px;
  margin-bottom: 10px;
}.asset-logo-and-name-img {
  background: #fff;
  border: 1px solid rgba(191, 191, 191, 0.2941176471);
  border-radius: 100%;
}.reconciliation-breakdown-total-widget {
  margin-top: 0;
}

/* =====================================================
   CARDS
   ===================================================== */
.reconciliation-breakdown-total-widget__cards-container {
  display: flex;
  gap: 16px;
}

.card-item {
  display: flex;
  align-items: center;
  height: 100px;
  width: 100%;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  overflow: hidden;
  position: relative;
}
.card-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #199297 0%, #1ab5a0 100%);
  border-radius: 0 4px 4px 0;
}
.card-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.card-item-icon {
  width: 40px;
  height: 40px;
  margin-right: 16px;
  margin-left: 22px;
  padding: 8px;
  background: #e6f5f5;
  border-radius: 10px;
}

.card-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-item-title {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-item-value {
  font-size: 28px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.5px;
  margin-top: 2px;
}

/* =====================================================
   SKELETONS
   ===================================================== */
.card-item-skeleton {
  display: flex;
  align-items: center;
  height: 100px;
  width: 100%;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.card-item-icon-skeleton {
  width: 40px;
  height: 40px;
  margin-right: 16px;
  margin-left: 22px;
  border-radius: 10px;
}

.card-item-title-skeleton {
  width: 120px;
  height: 12px;
  margin-bottom: 10px;
}

.card-item-value-skeleton {
  width: 240px;
  height: 26px;
}

.skeleton {
  border-radius: 6px;
  background: linear-gradient(110deg, #f1f5f9 30%, #e2e8f0 50%, #f1f5f9 70%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}

.chart-skeleton {
  border-radius: 14px;
  margin-bottom: 220px;
  background: linear-gradient(110deg, #f1f5f9 30%, #e2e8f0 50%, #f1f5f9 70%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}

.chart-skeleton-loading {
  display: none;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* =====================================================
   LINKS
   ===================================================== */
.spreadsheet-link {
  color: #34A853;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s;
}
.spreadsheet-link:hover {
  text-decoration: underline;
}

.detail-link {
  color: #199297;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s;
}
.detail-link:hover {
  text-decoration: underline;
}

/* =====================================================
   NAVIGATION (DATE PICKER)
   ===================================================== */
.reconciliation-breakdown-total-widget .reports__navigation-container {
  float: none;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.reconciliation-breakdown-total-widget .reports__navigation-container .reports__navigation {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reconciliation-breakdown-total-widget .reports__navigation-container .reports__navigation .MuiButton-outlined {
  border-color: #e2e8f0;
  color: #1e293b;
  font-weight: 600;
  font-size: 13px;
  text-transform: none;
  border-radius: 10px;
  padding: 8px 20px;
  transition: all 0.2s;
}
.reconciliation-breakdown-total-widget .reports__navigation-container .reports__navigation .MuiButton-outlined:hover {
  border-color: #199297;
  color: #199297;
  background: #e6f5f5;
}
.reconciliation-breakdown-total-widget .reports__navigation-container .reports__navigation .MuiButton-outlined:disabled {
  border-color: #f1f5f9;
  color: #cbd5e1;
}

/* =====================================================
   CHART AREA
   ===================================================== */
.chart-actions-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  margin-top: 8px;
  width: 100%;
}
.chart-actions-bar .refresh-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #199297;
  font-size: 18px;
  transition: all 0.2s;
  cursor: pointer;
  flex-shrink: 0;
}
.chart-actions-bar .refresh-btn:hover {
  background: #e6f5f5;
  transform: rotate(90deg);
}

.chart-actions-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.chart-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}
.chart-pagination .page-info {
  font-size: 13px;
  font-weight: 700;
  color: #199297;
  padding: 0 4px;
}/* =====================================================
   PRICE SLIDER
   ===================================================== */
.price-slider {
  z-index: 11111;
  position: fixed;
  background-color: #282C34;
  bottom: 0;
  width: 67%;
  height: 8px;
  padding: 10px;
  overflow-y: hidden;
  overflow-x: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  right: 0;
  margin-right: 150px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 14px;
  color: #fff;
  padding-bottom: 12px;
}

.price-box-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  animation: scrolling 15s linear infinite;
  cursor: pointer;
}
.price-box-slider:hover {
  animation-play-state: paused;
}

.price-item-slider {
  padding-left: 10px;
  padding-right: 10px;
}

.asset-container-slider {
  display: flex;
}

.asset-logo-slider {
  display: "inline-block";
  vertical-align: "middle";
  height: 16px;
  width: 16px;
  background-color: #fff;
  border-radius: 100%;
  padding: 1px;
}

.asset-slider {
  white-space: nowrap;
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 600;
}

@keyframes scrolling {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* =====================================================
   PRICE LEFT BANNER
   ===================================================== */
.price-banner-banner {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
  padding: 10px 8px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: all 0.3s ease;
}

/* =====================================================
   HEADER
   ===================================================== */
.price-banner-header {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #199297;
  padding: 4px 10px 8px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 2px;
}

/* =====================================================
   PRICE ITEM
   ===================================================== */
.price-item {
  border-radius: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.price-item:hover {
  background: #f8fafc;
  transform: translateX(3px);
}

/* =====================================================
   ASSET CONTAINER
   ===================================================== */
.asset-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
}

/* =====================================================
   LOGO
   ===================================================== */
.asset-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 2px;
  flex-shrink: 0;
}

/* =====================================================
   TEXT
   ===================================================== */
.asset-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.asset-name {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.asset-price {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.3px;
}

.asset {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.asset span {
  font-weight: 700;
}

/* =====================================================
   DIVIDER
   ===================================================== */
.price-item:not(:last-child) {
  position: relative;
}
.price-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 48px;
  right: 10px;
  height: 1px;
  background: #f1f5f9;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
  .price-banner-banner {
    width: 180px;
  }
}
@media (max-width: 992px) {
  .price-banner-banner {
    display: none;
  }
}
.asset-logo-skeleton {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(110deg, #f1f5f9 30%, #e2e8f0 50%, #f1f5f9 70%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}

.asset-skeleton {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.asset-name-skeleton {
  width: 50px;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(110deg, #f1f5f9 30%, #e2e8f0 50%, #f1f5f9 70%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}

.asset-price-skeleton {
  width: 90px;
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(110deg, #f1f5f9 30%, #e2e8f0 50%, #f1f5f9 70%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.price-item-skeleton {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
}

.price-banner-loading .price-item:hover {
  background: none;
  transform: none;
}

.price-banner-skeleton {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
  padding: 14px 10px;
  border-radius: 16px;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}.cash-ledger-filter-container {
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 30px;
  padding-bottom: 20px;
}
.cash-ledger-filter-container .title {
  font-size: 14px;
  font-weight: 600;
  padding-top: 20px;
}

.cash-ledger-filter-main {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.user-title-container {
  display: flex;
  gap: 5px;
  align-items: center;
}

.user-profile-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.user-avatar-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
}
.user-avatar-wrapper:hover .user-avatar-overlay, .user-avatar-wrapper.uploading .user-avatar-overlay {
  opacity: 1;
}

.user-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #199297;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  -webkit-user-select: none;
          user-select: none;
}
.user-avatar--photo {
  object-fit: cover;
  background: none;
}

.user-avatar-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.user-avatar-overlay i {
  font-size: 20px;
  color: #fff;
}

.user-profile-name-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.user-profile-name {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.user-profile-email {
  margin: 0;
  font-size: 12.5px;
  color: #6b7280;
}

.user-info-details {
  font-size: 12px;
}
.user-info-details p {
  line-height: 1.5;
}
.user-info-details b {
  font-weight: 600;
  color: #6b7280;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.user-verification-check {
  color: #2CA6F8;
  cursor: pointer;
  font-size: 14px;
  padding-top: 5px;
  padding-left: 5px;
}

.user-verification-check-small {
  color: #2CA6F8;
  cursor: pointer;
  font-size: 11px;
  padding-top: 5px;
  padding-left: 8px;
}

.message-info {
  font-size: 11.5px;
  color: #6b7280;
  line-height: 1.5;
}

.access-container {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px solid #e4e7ec;
  border-left: 3px solid #199297;
  border-radius: 8px;
  padding: 10px 12px;
  background-color: #fafbfc;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.access-status-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.access-status-row .access-status-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
}

.access-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #fff;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.access-button:hover {
  background-color: #199297;
  color: #fff;
  border-color: #199297;
}

.access-notes {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
  border-top: 1px solid #f0f1f3;
}
.access-notes p {
  margin: 0;
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.4;
}

.success-shield {
  color: #10b981;
  font-size: 15px;
}

.error-shield {
  color: #ef4444;
  font-size: 15px;
}

.user-info-meta {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  margin: 6px 0;
}
.user-info-meta .user-info-badge {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 20px;
  background-color: #f0f9f9;
  border: 1px solid #b2e0e2;
  color: #199297;
}

.user-rep-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 13px;
  margin: 1px 0;
}
.user-rep-row .user-rep-label {
  font-weight: 600;
  color: #6b7280;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-width: 110px;
}
.user-rep-row .user-rep-value {
  color: #199297;
  cursor: pointer;
  font-weight: 500;
}
.user-rep-row .user-rep-value:hover {
  text-decoration: underline;
}.icon-color-add {
  color: #218C3F;
}

.icon-color-substract {
  color: #CE392C;
}

.add-icon {
  font-size: 1.5rem;
  margin-left: 0.5rem;
  border: 2px solid transparent;
  border-radius: 50%;
  color: #218C3F;
}
.add-icon:hover {
  border-radius: 50%;
  border: 2px solid #218C3F;
}

.substract-icon {
  font-size: 1.5rem;
  margin-left: 0.5rem;
  border: 2px solid transparent;
  border-radius: 50%;
  color: #CE392C;
  margin-left: -1px;
}
.substract-icon:hover {
  border-radius: 50%;
  border: 2px solid #CE392C;
}

.reconciliation-actions-container {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.debit-value-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 62, 49, 0.07);
  border: 1px solid rgba(230, 62, 49, 0.35);
  border-radius: 6px;
  padding: 2px 8px;
  font-weight: 700;
  font-size: 11.5px;
  color: #E63E31;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.debit-value {
  color: #E63E31 !important;
}

.credit-value-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 163, 108, 0.07);
  border: 1px solid rgba(0, 163, 108, 0.35);
  border-radius: 6px;
  padding: 2px 8px;
  font-weight: 700;
  font-size: 11.5px;
  color: #00a36c;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.credit-value {
  color: #00a36c !important;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.dark-mode .product-tag {
  background: #374151;
  border-color: #4b5563;
  color: #d1d5db;
}

.action-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.action-tag--buy {
  background: rgba(0, 163, 108, 0.08);
  border: 1px solid rgba(0, 163, 108, 0.35);
  color: #00a36c;
}
.action-tag--sell {
  background: rgba(230, 62, 49, 0.08);
  border: 1px solid rgba(230, 62, 49, 0.35);
  color: #E63E31;
}

.dark-mode .action-tag--buy {
  background: rgba(0, 163, 108, 0.15);
  border-color: rgba(0, 163, 108, 0.4);
}

.dark-mode .action-tag--sell {
  background: rgba(230, 62, 49, 0.15);
  border-color: rgba(230, 62, 49, 0.4);
}

.reference-type-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(25, 146, 151, 0.08);
  border: 1px solid rgba(25, 146, 151, 0.3);
  color: #199297;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.dark-mode .reference-type-tag {
  background: rgba(25, 146, 151, 0.15);
  border-color: rgba(25, 146, 151, 0.4);
  color: #5bc8cc;
}

.list-table-btn {
  padding: 2px 12px !important;
  font-size: 11px !important;
  border-color: #199297 !important;
  color: #199297 !important;
  border-radius: 20px !important;
  text-transform: none !important;
  min-width: unset !important;
  line-height: 1.6 !important;
}

.list-table-btn-user {
  padding: 2px 10px !important;
  font-size: 11px !important;
  border-color: #199297 !important;
  color: #199297 !important;
  border-radius: 20px !important;
  text-transform: none !important;
  min-width: unset !important;
  line-height: 1.6 !important;
  font-weight: 500 !important;
}

.dark-mode .debit-value-container {
  background: rgba(230, 62, 49, 0.12);
  border-color: rgba(230, 62, 49, 0.4);
}
.dark-mode .credit-value-container {
  background: rgba(0, 163, 108, 0.12);
  border-color: rgba(0, 163, 108, 0.4);
}.blocked-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 520px;
  width: 520px;
  position: absolute;
  z-index: 100;
  content: "";
}

.additional-info-container {
  margin-top: 50px;
  margin-bottom: 40px;
}

.crypto-deposit-message {
  font-size: 14px;
  color: #1565C0;
}
.crypto-deposit-message:hover {
  cursor: pointer;
}

.clear-container {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
}
.clear-container span {
  color: #1565C0;
  cursor: pointer;
}.tracker-logger {
  margin-top: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #f5f5f5;
  font-size: 13px;
  width: 500px;
  padding: 10px;
  height: 85px;
  padding-left: 20px;
}

.copy-click {
  cursor: pointer;
}
.copy-click:active {
  font-weight: bold;
}

.value-copied {
  font-size: 10px;
  padding-left: 5px;
  font-weight: bold;
  padding-bottom: 5px;
  position: absolute;
  padding-top: 1.8px;
  opacity: 0;
}
/* ── Toolbar ── */
.positions-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.positions-view-toggle {
  display: flex;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 3px;
}

.positions-view-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.15s;
}
.positions-view-toggle__btn i {
  font-size: 15px;
}
.positions-view-toggle__btn--active {
  background: #fff;
  color: #199297;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.positions-grand-total {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}
.positions-grand-total i {
  font-size: 16px;
  color: #199297;
}
.positions-grand-total strong {
  color: #111827;
}

/* ── Cards Grid ── */
.positions-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.positions-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
  transition: all 0.15s;
}
.positions-card:hover {
  border-color: #199297;
  box-shadow: 0 4px 16px rgba(25, 146, 151, 0.1);
  transform: translateY(-1px);
}

.positions-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.positions-card__rank {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #199297;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.positions-card__logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}

.positions-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  flex: 1;
}

.positions-card__pct {
  font-size: 11px;
  font-weight: 700;
  color: #199297;
  background: rgba(25, 146, 151, 0.08);
  padding: 2px 8px;
  border-radius: 6px;
}

.positions-card__rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.positions-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.positions-card__row--muted {
  opacity: 0.55;
}

.positions-card__label {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.positions-card__val {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}
.positions-card__val--bold {
  font-weight: 800;
  color: #199297;
}

.positions-card__actions {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.positions-card__action-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #374151;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.positions-card__action-btn i {
  font-size: 13px;
}
.positions-card__action-btn:hover {
  border-color: #199297;
  color: #199297;
  background: rgba(25, 146, 151, 0.04);
}.dialogPaper {
  max-width: 800px !important;
}

.cw-table {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: white;
}
.cw-table .MuiTableContainer-root,
.cw-table .MuiPaper-root {
  box-shadow: none;
  background: transparent;
}
.cw-table .MuiTableHead-root .MuiTableCell-head {
  background: #199297 !important;
  color: white !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 10px 12px !important;
  border-bottom: none !important;
  white-space: nowrap;
}
.cw-table .MuiTableBody-root .MuiTableCell-root {
  padding: 8px 12px !important;
  font-size: 13px !important;
  color: #111827 !important;
  border-bottom: 1px solid #f3f4f6 !important;
  vertical-align: middle !important;
}
.cw-table .MuiTableBody-root .MuiTableRow-root {
  transition: background 0.1s;
}
.cw-table .MuiTableBody-root .MuiTableRow-root:hover {
  background: #f9fafb !important;
}
.cw-table .MuiTablePagination-root {
  border-top: 1px solid #f3f4f6;
  font-size: 12px;
  color: #6b7280;
}

.cw-export-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.cw-export-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s ease;
}
.cw-export-btn i {
  font-size: 15px;
}
.cw-export-btn:hover {
  border-color: #199297;
  color: #199297;
  background: rgba(25, 146, 151, 0.04);
}

.cw-client-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: #199297;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.cw-client-btn i {
  font-size: 14px;
}
.cw-client-btn:hover {
  border-color: #199297;
  background: rgba(25, 146, 151, 0.06);
}

.cw-wallet-addr {
  font-family: "SF Mono", "Consolas", "Monaco", monospace;
  font-size: 12px;
  color: #6b7280;
}

.cw-ref {
  font-family: "SF Mono", "Consolas", "Monaco", monospace;
  font-size: 11px;
  color: #6b7280;
  word-break: break-all;
}

.cw-date {
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
}

.cw-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.cw-details-btn i {
  font-size: 14px;
}
.cw-details-btn:hover {
  border-color: #199297;
  color: #199297;
}

.cw-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.cw-status--approved, .cw-status--completed {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}
.cw-status--pending {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.cw-status--rejected, .cw-status--failed, .cw-status--cancelled, .cw-status--expired {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.cw-status--action_required, .cw-status--secondary {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}
.cw-status--na {
  background: #f3f4f6;
  color: #9ca3af;
}

.cw-aml {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cw-aml__score {
  font-size: 12px;
  font-weight: 700;
}
.cw-aml__pdf {
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.cw-aml__pdf:hover {
  opacity: 1;
}

.cw-checkbox-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
}
.cw-checkbox-row input[type=checkbox] {
  accent-color: #199297;
}

.cw-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}.user-association-table td,
.user-association-table th {
  border: 1px solid;
  text-align: center;
  padding: 6px;
}
.user-association-table thead {
  background-color: #1CA1A6;
  color: #fff;
}

.user-association-table {
  width: 100%;
  border-collapse: collapse;
}.kyc-container {
  border: 1px solid #e0e0e0;
  padding: 20px;
  margin-top: 20px;
}.main-container {
  padding: 30px;
}

.bcb-container {
  border: 1px solid #e0e0e0;
  padding: 30px;
  margin-bottom: 20px;
}

.error-text {
  color: red;
  font-size: 12px;
  position: relative;
  margin-top: 5px;
  padding: 5px 10px;
  background-color: #ffe6e6;
  border-radius: 4px;
  display: inline-block;
}

.additional-fields {
  display: flex;
  justify-content: space-between;
}.main-container {
  padding: 30px;
}

.bcb-container {
  border: 1px solid #e0e0e0;
  padding: 30px;
  margin-bottom: 20px;
}

.bank-account-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.error-text {
  color: red;
  font-size: 12px;
  position: relative;
  margin-top: 5px;
  padding: 5px 10px;
  background-color: #ffe6e6;
  border-radius: 4px;
  display: inline-block;
}

.additional-fields {
  display: flex;
  justify-content: space-between;
}.general-tab {
  margin-bottom: 20px;
}

.create-type-wallet-container {
  display: inline-block;
  border: 1px solid #7E7E7E;
  border-radius: 20px;
  padding: 10px;
  margin-left: 20px;
}
.create-type-wallet-container div {
  display: flex;
}
.create-type-wallet-container div .otc__item-dense {
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 20px;
}.commissions-container {
  padding-left: 15px;
}
.commissions-container .commissions-line {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.commissions-container .commissions-line .commissions-line-item {
  flex: 1;
}.upload-documents-container {
  border: 1px solid #ccc;
  padding-left: 20px;
  padding-bottom: 10px;
}.result div {
  display: inline-block;
  padding: 1px;
  vertical-align: middle;
}

.ml-10 {
  margin-left: 10px !important;
}

.json-container {
  height: 600px;
  overflow-y: auto;
}.table-separator {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  margin: 10px 0;
  margin-top: 20px;
}

.summary-data {
  display: flex;
  flex-flow: row wrap;
}
.summary-data > div {
  margin-left: 10px;
  display: block;
  padding-top: 12px;
}.date-selector-container {
  padding: 20px;
  margin-bottom: 20px;
}

.refresh-icon {
  cursor: pointer;
  color: #1CA1A6;
  font-size: 24px;
}

.arrow-icon {
  cursor: pointer;
  color: #1CA1A6;
  font-size: 24px;
}

.date-selected {
  text-align: center;
  margin-top: -20px;
}

.date-selected-p {
  margin-top: -15px;
}

.date-selector-buttons {
  margin-left: 35px;
}

.btn-active {
  background-color: #1CA1A6 !important;
  color: white !important;
}

.retrieve-data-button-container {
  margin-top: 10px;
  text-align: center;
}

.mini-info {
  font-size: 12.5px;
  color: gray;
  margin-top: 5px;
}.filter-options {
  float: right;
  margin-right: 20px;
}

.expand-icon {
  font-size: 25px;
  font-weight: 600;
  padding-left: 10px;
}

.wallet-item {
  display: none;
}

.wallet-item-expanded {
  display: block;
}.address-container {
  padding-top: 5px;
  padding-bottom: 5px;
}

.download-icon {
  cursor: pointer;
  color: #007bff;
  font-size: 1.5em;
}.address-container {
  padding-top: 5px;
  padding-bottom: 5px;
}

.download-icon {
  cursor: pointer;
  color: #007bff;
  font-size: 1.5em;
}.gb10-transaction-tag {
  background-color: #e0e0e0;
  border: 1px solid #ccc;
  color: #333;
  padding: 2px 20px;
  font-size: 12.5px;
  text-align: center;
  border-radius: 10px;
  padding-left: 10px !important;
  padding-right: 10px !important;
}.user-screen-selector {
  height: 100%;
}

.user-screen-selector-header {
  position: absolute;
  right: 20px;
  margin-top: 20px;
}.radio-input {
  padding-right: 30px;
}

.input-value-field {
  margin-top: 10px;
  width: 140px;
}

.first-container {
  padding-left: 15px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.textarea-input {
  resize: none;
  width: 400px;
  height: 120px !important;
}

.td-description {
  text-align: left;
}

.trade-value {
  height: 40px;
}

.fee-panel {
  display: inline-block;
  font-size: 12px;
  vertical-align: middle;
  padding-bottom: 3.5px;
  padding-left: 10px;
  color: #1976D2;
}

.otc-adjustments-table {
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 700px;
}
.otc-adjustments-table th {
  text-align: right;
  font-weight: 400;
}
.otc-adjustments-table td {
  text-align: right;
  padding-top: 10px;
  padding-bottom: 5px;
}.additional-charges {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid #e5e5e5;
  padding-left: 10px;
}
/* ── Card wrapper ── */
.manual-ledger-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.manual-ledger-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #f1f5f9;
}

.manual-ledger-card__header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}
.manual-ledger-card__header-left > i {
  font-size: 18px;
  color: #199297;
}

.manual-ledger-card__export {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(25, 146, 151, 0.2);
  background: rgba(25, 146, 151, 0.06);
  color: #199297;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.manual-ledger-card__export i {
  font-size: 14px;
}
.manual-ledger-card__export:hover {
  background: #199297;
  color: #fff;
  border-color: #199297;
}

/* ── Filters ── */
.manual-ledger-filters {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.manual-ledger-filters__row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.manual-ledger-filters__clear {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.manual-ledger-filters__clear i {
  font-size: 15px;
}
.manual-ledger-filters__clear:hover {
  background: #fee2e2;
  border-color: #fecaca;
  color: #ef4444;
}

/* ── Legacy ── */
.cash-ledger-manual-entry-datafilter-container {
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px;
}
.manual-entry-form {
  max-width: 520px;
  /* ── Rounded MUI inputs ── */
}
.manual-entry-form .MuiInput-underline::before, .manual-entry-form .MuiInput-underline::after,
.manual-entry-form .MuiInput-root::before,
.manual-entry-form .MuiInput-root::after {
  display: none !important;
}
.manual-entry-form .MuiInputBase-root {
  background: #f9fafb !important;
  border: 1.5px solid #e5e7eb !important;
  border-radius: 10px !important;
  padding: 6px 14px !important;
  transition: all 0.2s !important;
  min-height: 40px !important;
}
.manual-entry-form .MuiInputBase-root:hover:not(.Mui-disabled) {
  border-color: #cbd5e1 !important;
}
.manual-entry-form .MuiInputBase-root.Mui-focused {
  border-color: #199297 !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(25, 146, 151, 0.08) !important;
}
.manual-entry-form .MuiInputBase-input {
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 4px 0 !important;
  color: #111827 !important;
}
.manual-entry-form .MuiSelect-icon {
  color: #94a3b8 !important;
  right: 8px !important;
}
.manual-entry-form .MuiAutocomplete-root .MuiInputBase-root {
  padding: 4px 14px !important;
  padding-right: 56px !important;
}
.manual-entry-form .MuiAutocomplete-endAdornment {
  right: 10px !important;
}
.manual-entry-form .otc__item-dense {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 5px 0;
  min-height: 44px;
}
.manual-entry-form .otc__p-title {
  min-width: 120px;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}
.manual-entry-form textarea {
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
  resize: vertical;
  background: #f9fafb;
  outline: none;
  transition: all 0.2s;
}
.manual-entry-form textarea:focus {
  border-color: #199297;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(25, 146, 151, 0.08);
}
.manual-entry-form .MuiAlert-root {
  border-radius: 10px !important;
  font-size: 13px !important;
  margin-bottom: 16px;
}

/* ── Debit / Credit sections ── */
.item-container {
  padding: 0;
  margin: 16px 0;
  border-bottom: none;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
}

.title-header {
  background: none;
  color: #199297;
  height: auto;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.title-header::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: #199297;
}
.title-header p {
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #199297;
}.manual-entry-preview-results {
  margin-top: 30px;
}.user-reports {
  padding: 10px 0;
}

.user-reports__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.user-reports__header-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(25, 146, 151, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-reports__header-icon i {
  font-size: 22px;
  color: #199297;
}

.user-reports__title {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.user-reports__subtitle {
  font-size: 13px;
  color: #94a3b8;
  margin: 2px 0 0;
}

.user-reports__section {
  margin-bottom: 28px;
}

.user-reports__section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #199297;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}
.user-reports__section-header i {
  font-size: 16px;
}

.user-reports__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}

.user-reports__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s;
}
.user-reports__card:hover {
  border-color: #199297;
  box-shadow: 0 2px 12px rgba(25, 146, 151, 0.1);
  transform: translateY(-1px);
}
.user-reports__card:hover .user-reports__card-icon {
  background: #199297;
}
.user-reports__card:hover .user-reports__card-icon i {
  color: #fff;
}
.user-reports__card:hover .user-reports__card-arrow {
  color: #199297;
  opacity: 1;
}

.user-reports__card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(25, 146, 151, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.user-reports__card-icon i {
  font-size: 18px;
  color: #199297;
  transition: color 0.15s;
}

.user-reports__card-body {
  flex: 1;
  min-width: 0;
}

.user-reports__card-label {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-reports__card-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 6px;
  background: #fef3c7;
  color: #92400e;
  letter-spacing: 0.3px;
}

.user-reports__card-desc {
  font-size: 11px;
  color: #94a3b8;
  margin: 3px 0 0;
  line-height: 1.4;
}

.user-reports__card-arrow {
  font-size: 18px;
  color: #cbd5e1;
  opacity: 0;
  transition: all 0.15s;
  flex-shrink: 0;
}
.dashboard-header {
  background-color: #fff !important;
  width: 100% !important;
  position: fixed !important;
  top: 0 !important;
  z-index: 1000 !important;
  right: 0 !important;
  float: right !important;
  height: 60px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06) !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

.dark-mode-warning {
  font-size: 11px !important;
  background-color: #f8d7da !important;
  color: #721c24 !important;
  padding: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  margin-bottom: 1px;
  text-align: center !important;
  font-weight: 500 !important;
  border-bottom: 1px solid #721c24 !important;
  position: fixed;
  top: 0;
  right: 0;
  margin-top: 75px;
  margin-right: 20px;
}

.cache-icon {
  font-size: 20px !important;
  margin-right: 10px !important;
  color: #64748b;
  transition: color 0.15s;
}
.cache-icon:hover {
  color: #199297;
}

.cache-reset-notification {
  cursor: pointer !important;
  width: 350px !important;
  height: 80px !important;
  background-color: #f0fdf4 !important;
  color: #14532d !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  margin-bottom: 1px;
  font-weight: 500 !important;
  border: 1px solid #bbf7d0 !important;
  position: fixed;
  top: 0;
  right: 0;
  margin-top: 70px;
  margin-right: 20px;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.cache-reset-notification p {
  padding-top: 2px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

.otc-notification {
  position: fixed;
  top: 70px;
  right: 20px;
  z-index: 1000;
  width: 360px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  animation: otcSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.otc-notification__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: none;
  background: rgba(0, 0, 0, 0.04);
  color: #94a3b8;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
  z-index: 2;
}
.otc-notification__close:hover {
  background: #fee2e2;
  color: #ef4444;
}
.otc-notification__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 16px 12px;
  background: linear-gradient(135deg, rgba(25, 146, 151, 0.06) 0%, rgba(25, 146, 151, 0.02) 100%);
  border-bottom: 1px solid #f1f5f9;
}
.otc-notification__logos {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 42px;
  margin-left: 4px;
}
.otc-notification__logos .otc-notification__logo-base {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.otc-notification__logos .otc-notification__logo-quote {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.otc-notification__pair {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  flex: 1;
  letter-spacing: -0.3px;
}
.otc-notification__action {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-right: 28px;
}
.otc-notification__action--buy {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}
.otc-notification__action--sell {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.otc-notification__body {
  padding: 14px 16px;
  cursor: pointer;
  transition: background 0.15s;
}
.otc-notification__body:hover {
  background: #fafbfc;
}
.otc-notification__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.otc-notification__field {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.otc-notification__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
}
.otc-notification__val {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}
.otc-notification__val--id {
  color: #199297;
  font-weight: 800;
}
.otc-notification__divider {
  height: 1px;
  background: #f1f5f9;
  margin: 12px 0;
}
.otc-notification__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.otc-notification__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  min-width: 0;
}
.otc-notification__meta-row > i {
  font-size: 15px;
  color: #94a3b8;
  flex-shrink: 0;
}
.otc-notification__meta-row .otc-notification__label {
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  min-width: 90px;
  flex-shrink: 0;
}
.otc-notification__meta-row .otc-notification__val {
  font-size: 12.5px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.otc-notification__footer {
  padding: 10px 16px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}
.otc-notification__footer-hint {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
}
.otc-notification__footer-hint i {
  font-size: 13px;
  vertical-align: -1px;
}

@keyframes otcSlideIn {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Legacy — kept for backwards compat if referenced elsewhere */
.otc-transaction-notification {
  display: none !important;
}

.bell-logo {
  height: 30px !important;
  width: 30px !important;
}

.flex-container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  height: 100% !important;
  gap: 10px !important;
}

.fullscreen-icon {
  font-size: 18px !important;
  margin-right: -10px !important;
  margin-left: -25px !important;
  color: #64748b;
  transition: color 0.15s;
}
.fullscreen-icon:hover {
  color: #199297;
}

.avatar-name-text {
  font-size: 12px !important;
  font-weight: 700 !important;
}

.user-info-container {
  padding: 20px 16px;
}

/* =====================================================
   PROFILE DRAWER STYLING
   ===================================================== */
.profile-options-drawer {
  background: #fff;
  height: 100%;
}
.profile-options-drawer .user-info-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 20px 16px 16px;
  background: linear-gradient(135deg, rgba(25, 146, 151, 0.05) 0%, rgba(25, 146, 151, 0.01) 100%);
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 4px;
}
.profile-options-drawer .user-info-avatar-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.profile-options-drawer .user-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.profile-options-drawer .user-info-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-options-drawer .user-info-email {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-options-drawer .MuiDivider-root {
  margin: 4px 16px;
  border-color: #f1f5f9;
}
.profile-options-drawer .MuiList-root {
  padding: 8px;
}
.profile-options-drawer .MuiListItem-root {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1px;
}
.profile-options-drawer .MuiListItemButton-root {
  border-radius: 10px;
  padding: 8px 14px;
  transition: all 0.15s ease;
}
.profile-options-drawer .MuiListItemButton-root:hover {
  background: #f8fafc;
}
.profile-options-drawer .MuiListItemIcon-root {
  min-width: 36px;
}
.profile-options-drawer .MuiListItemIcon-root .MuiSvgIcon-root {
  font-size: 20px;
  color: #64748b;
}
.profile-options-drawer .MuiListItemText-root .MuiTypography-root {
  font-size: 13.5px;
  font-weight: 500;
  color: #334155;
  letter-spacing: 0.1px;
}

/* Removed — replaced by .otc-notification styles */
.theme-container {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 12px !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  padding: 5px 12px !important;
  transition: all 0.15s ease;
}
.theme-container span {
  font-weight: 600 !important;
  color: #334155 !important;
}
.theme-container .theme-icon {
  color: #64748b;
  font-size: 15px;
}
.theme-container:hover {
  border-color: #199297 !important;
  background: rgba(25, 146, 151, 0.04) !important;
}.price-not-found {
  font-size: 11.5px;
  border: 1px solid red;
  color: red;
  padding: 3px;
  padding-left: 6px;
  padding-right: 6px;
}.summary-total-here {
  display: flex;
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: -25px;
}
.summary-total-here p {
  margin-left: auto;
}

.edit-icon {
  font-size: 20px;
  margin-right: 10px;
  vertical-align: middle;
  color: #23A4A9;
  cursor: pointer;
}.total {
  font-size: 1.3em;
  font-weight: 600;
}

.locked {
  margin-top: 10px;
}

.flow-root {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -25px;
}

.float-left {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-right: 20px;
}

.float-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.filtered-accounts-container {
  padding-bottom: 20px;
  margin-bottom: -80px;
}

.filtered-account {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  color: #1982D6;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #1982D6;
  border-radius: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 8px;
}
.filtered-account:hover {
  background-color: #1982D6;
  color: white;
}.summary-total {
  display: flex;
  font-size: 1.3em;
  font-weight: 600;
}
.summary-total p {
  margin-left: auto;
}

.loading-container {
  text-align: center;
  justify-content: center;
  margin: 0 auto;
}.general-tab {
  margin-bottom: 20px;
}

.snapshot-today-button-container {
  text-align: center;
  margin-top: -35px;
  padding-left: 30px;
}

.snapshot-today-button-container button {
  background-color: #1CA1A6;
  border-radius: 10px;
  color: #fff;
  outline: none;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 2px;
  padding-bottom: 3px;
  cursor: pointer;
  border: none;
}
.snapshot-today-button-container button:hover {
  background-color: #137074;
  color: #fff;
}

.report-container {
  float: right;
  margin-top: -40px;
  height: 40px;
}
.report-container p {
  font-size: 14px;
  color: #1CA1A6;
  text-decoration: underline;
  cursor: pointer;
}.notes-container {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  width: 50%;
}

.notes-textarea {
  resize: none;
  padding: 10px;
}

.notes-buttons-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.approve-button {
  margin-top: 3px !important;
  margin-right: 8px !important;
}

.reject-button {
  margin-top: 3px !important;
  margin-right: 8px !important;
}

.aml-check-hold-container {
  margin-top: 20px;
  width: 800px;
  border: 3px solid #000;
  padding-left: 10px;
  vertical-align: middle;
}
.aml-check-hold-container .timer-icon {
  vertical-align: middle;
  padding-right: 10px;
  margin-left: 10px;
  font-weight: bold;
}

.withdraw-ledgers-container {
  margin-top: 10px;
}

.aml-check-retry-container {
  margin-top: 20px;
  width: 800px;
  padding-left: 20px;
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.wt-notes {
  vertical-align: super;
}.tag {
  font-size: 12px;
  color: #0A0D23;
  border: 1px solid #0A0D23;
  border-radius: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 2px;
  padding-right: 2px;
}

.link-container {
  width: 180px;
  font-size: 12px;
}
.link-container .item {
  cursor: pointer;
}.global-tab {
  height: 100px;
  width: 100%;
  z-index: 1100;
}
.global-tab .tab-separator {
  padding: 5px;
  display: inline-block;
}
.global-tab .tab-option {
  padding: 5px;
  display: inline-block;
}.custom-container {
  margin-top: 20px;
  margin-left: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  padding-left: 50px;
  padding-right: 50px;
}

.new-run-button-container {
  margin-top: 20px;
  margin-left: 10px;
}

.test-container {
  border: 2px dashed #000;
  padding: 30px;
}.searchBar {
  display: flex;
  gap: 20px;
  z-index: 100;
  margin-bottom: 25px;
}

.backfill_fx_rate_button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}.balance-update-banner {
  position: fixed;
  background-color: #1BA0A6;
  bottom: 0;
  height: 60px;
  width: 100%;
  z-index: 9999999;
  text-align: center;
  border-top: 6px solid #315465;
  box-shadow: 0px -5px 10px 0px rgba(0, 0, 0, 0.15);
}
.balance-update-banner p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 20px;
  margin-left: 140px;
  text-shadow: 1px 1px 2px rgb(76, 76, 76);
}
.balance-update-banner .button {
  margin-left: 10px;
  width: 90px;
  height: 30px;
  background-color: #315465;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  float: right;
  margin-top: -5px;
  text-shadow: 1px 1px 2px rgb(111, 111, 111);
}
.balance-update-banner .button:hover {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15);
}
.balance-update-banner .button:active {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}.wallet-type-banner {
  background-color: #A8A8A8;
  color: #000;
  padding: 6px;
  padding-left: 15px;
}

.web3-listener-tab {
  margin-top: 20px;
}
.web3-listener-tab .main-tab {
  border: 1px solid #A8A8A8;
  padding: 20px;
  height: 100%;
}
.web3-listener-tab .option {
  padding: 10px;
  cursor: pointer;
  margin-right: 10px;
  border-top: 1px solid #A8A8A8;
  border-left: 1px solid #A8A8A8;
  border-right: 1px solid #A8A8A8;
  border-bottom: 1px solid #fff !important;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s;
}
.web3-listener-tab .option:hover {
  background-color: #A8A8A8;
  color: #000;
}.transaction-details {
  margin-top: 30px;
  padding-left: 20px;
  border: 1px solid;
}.rebalance-report {
  border: 1px solid #e5e5e5;
  padding: 20px;
  width: 600px;
}

.trash-container {
  padding: 5px;
  margin: 6px;
}
.trash-container:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}

.trash-icon {
  margin-left: 5px;
  color: #D03A2E;
}

.remove-notification {
  color: #D03A2E;
  width: 200px;
  font-size: 12px;
  float: right;
  margin-top: -50px;
  margin-right: 10px;
  border: 1px solid #D03A2E;
  padding: 5px;
}.general-tab {
  margin-bottom: 20px;
}

.table-cell {
  padding: 5px;
  background-color: #000;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 15px !important;
  color: #fff !important;
  width: 20%;
}

.current_date {
  padding-bottom: 15px;
}

.hint_summary {
  font-size: 12px !important;
}

.tabs_section {
  display: flex;
  justify-content: space-between;
}

.reconciliation_header {
  display: flex;
  justify-content: space-between;
}
.reconciliation_header .time_option_selector {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.reconciliation_header .time_option_selector .report_time_options {
  width: 100%;
  display: flex;
  justify-content: end;
  gap: 20px;
  margin-bottom: 10px;
}

.otc_fees_page_buttons_section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 250px;
  margin-bottom: 10px;
}

.data_selection_bar {
  display: flex;
  flex-direction: column;
}

.loading-container {
  margin-top: 20px;
}
/* =====================================================
   2FA SCREEN — Split panel (matches login design)
   ===================================================== */
/* ---- Layout ---- */
.twofa-layout {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* ---- Left panel ---- */
.twofa-layout__left {
  width: 50%;
  background: linear-gradient(170deg, #1a2e3b 0%, #0f1f2a 50%, #152a35 100%);
  display: flex;
  flex-direction: column;
  padding: 40px 50px;
  position: relative;
  overflow: hidden;
}
.twofa-layout__left::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 146, 151, 0.12) 0%, transparent 70%);
  top: -120px;
  right: -120px;
  pointer-events: none;
}
.twofa-layout__left::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 146, 151, 0.08) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  pointer-events: none;
}

.twofa-layout__logo {
  z-index: 1;
}
.twofa-layout__logo img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.twofa-layout__branding {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.twofa-layout__accent-bar {
  width: 50px;
  height: 4px;
  background: #199297;
  border-radius: 2px;
  margin-bottom: 24px;
}

.twofa-layout__headline {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: #199297;
  margin: 0 0 20px;
  letter-spacing: -1px;
}
.twofa-layout__headline span {
  color: rgba(255, 255, 255, 0.85);
}

.twofa-layout__tagline {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
  margin: 0 0 32px;
}

.twofa-layout__badges {
  display: flex;
  gap: 10px;
}

.twofa-layout__badge {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(25, 146, 151, 0.4);
  color: #199297;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.twofa-layout__badge i {
  font-size: 13px;
}

.twofa-layout__footer {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.25);
  margin: 0;
  z-index: 1;
}

/* ---- Right panel ---- */
.twofa-layout__right {
  width: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* ---- Card ---- */
.twofa-card {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.twofa-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(25, 146, 151, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.twofa-card__icon i {
  font-size: 30px;
  color: #199297;
}

.twofa-card__title {
  font-size: 26px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 6px;
}

.twofa-card__subtitle {
  font-size: 14px;
  color: #94a3b8;
  margin: 0 0 36px;
  line-height: 1.5;
}

/* ---- Digit boxes ---- */
.twofa-card__digits {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  width: 100%;
  justify-content: center;
}

.twofa-card__digit {
  width: 52px;
  height: 60px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  text-align: center;
  outline: none;
  transition: all 0.2s;
  caret-color: #199297;
}
.twofa-card__digit:focus {
  border-color: #199297;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(25, 146, 151, 0.12);
}
.twofa-card__digit--filled {
  border-color: #199297;
  background: rgba(25, 146, 151, 0.04);
}
.twofa-card__digit--error {
  border-color: #ef4444 !important;
  background: #fef2f2;
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-4px);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(3px);
  }
}
/* ---- QR code (setup view) ---- */
.twofa-card__qr {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.twofa-card__step-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #199297;
  margin: 0 0 16px;
}
.twofa-card__step-label i {
  font-size: 18px;
}

/* ---- Loading ---- */
.twofa-card__loading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #199297;
}

/* ---- Submit button ---- */
.twofa-card__submit {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #199297 0%, #137074 100%);
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(25, 146, 151, 0.25);
  margin-bottom: 16px;
}
.twofa-card__submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(25, 146, 151, 0.35);
}
.twofa-card__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ---- Logout link ---- */
.twofa-card__logout {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.15s;
}
.twofa-card__logout i {
  font-size: 16px;
}
.twofa-card__logout:hover {
  color: #ef4444;
  background: #fef2f2;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .twofa-layout {
    flex-direction: column;
  }
  .twofa-layout__left {
    width: 100%;
    padding: 30px 30px 20px;
    min-height: 180px;
  }
  .twofa-layout__headline {
    font-size: 32px;
  }
  .twofa-layout__tagline {
    display: none;
  }
  .twofa-layout__right {
    width: 100%;
    flex: 1;
  }
  .twofa-card__digit {
    width: 44px;
    height: 52px;
    font-size: 20px;
  }
}.wallet-setup-button-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 13.5px;
}

.wallet-setup-button {
  border: 1px solid #E0E0E0;
  background-color: #FFFFFF;
  padding: 10px 15px;
  border-radius: 15px;
  cursor: pointer;
}
.wallet-setup-button:hover {
  background-color: #F5F5F5;
}
.wallet-setup-button > img {
  margin-right: 10px;
  vertical-align: middle;
}

.wallet-setup-info-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 13.5px;
}

.wallet-setup-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid #E0E0E0;
  padding: 10px 15px;
  border-radius: 15px;
  padding-bottom: 20px;
}/* =====================================================
   MAIN CONSOLE PANEL
   ===================================================== */
.events-banner {
  z-index: 11111111111111 !important;
  position: fixed;
  background-color: #161B22;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 16px 20px;
  padding-top: 12px;
  border-top: 1px solid #21262d;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}
.events-banner .ws-events-text {
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace !important;
  font-size: 12.5px;
  color: #c9d1d9;
  line-height: 1.8;
}
.events-banner .event-hover:hover {
  background-color: rgba(63, 185, 80, 0.15);
  color: #2CBAA7;
  border-radius: 4px;
  cursor: pointer;
}
.events-banner .bold {
  font-weight: 600 !important;
  color: #8b949e;
}
.events-banner::-webkit-scrollbar {
  width: 8px;
  background: #161B22;
}
.events-banner::-webkit-scrollbar-thumb {
  background: #21262d;
  border-radius: 4px;
}
.events-banner::-webkit-scrollbar-thumb:hover {
  background: #30363d;
}

/* =====================================================
   TABS
   ===================================================== */
.console-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
  background: #161B22;
  padding: 10px 20px;
  border-bottom: 1px solid #21262d;
  top: -12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.console-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
}

.default-tab {
  padding: 5px 14px;
  color: #8b949e;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-align: center;
  cursor: pointer;
  border-radius: 20px;
  border: 1px solid #21262d;
  background: transparent;
  transition: all 0.15s ease;
}
.default-tab:hover {
  color: #fff;
  border-color: #30363d;
  background: rgba(255, 255, 255, 0.06);
}
.default-tab.active-tab {
  color: #fff;
  background: #199297;
  border-color: #199297;
}

/* =====================================================
   CLOSE BUTTON (inside console)
   ===================================================== */
.console-close-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #8b949e;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #21262d;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  margin-right: 30px !important;
}
.console-close-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: #30363d;
}
.console-close-btn i {
  font-size: 14px;
}

/* =====================================================
   CONSOLE BUTTON (minimized)
   ===================================================== */
.show-events {
  z-index: 11111111111111 !important;
  position: fixed;
  bottom: 0;
  right: 0;
  margin-right: 16px;
  padding: 6px 20px 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  background: #161B22;
  color: #8b949e;
  text-align: center;
  border: 1px solid #21262d;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  transition: all 0.2s ease;
}
.show-events span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.show-events:hover {
  color: #fff;
  background: #161b22;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
}

/* =====================================================
   HIDE BUTTON (legacy - now using console-close-btn)
   ===================================================== */
.hide-events {
  display: none;
}

.hide-event-text-container {
  display: none;
}

/* =====================================================
   TAG ICONS
   ===================================================== */
.tag-icon {
  font-size: 13px;
  padding-left: 6px;
  padding-right: 6px;
  color: #2CBAA7;
}

/* =====================================================
   EVENT DETAIL PANEL
   ===================================================== */
.ws-events-detail {
  border: 1px solid #21262d;
  border-left: 3px solid #199297;
  padding: 16px;
  margin: 8px 0;
  width: 90%;
  background: #161b22;
  border-radius: 0 8px 8px 0;
}
.ws-events-detail pre {
  margin-top: 10px;
  white-space: pre-wrap;
  word-break: break-all;
}
.ws-events-detail .cursor-pointer {
  color: #199297;
  transition: color 0.15s;
}
.ws-events-detail .cursor-pointer:hover {
  color: #24d1d9;
}.bbook-update-banner {
  position: fixed;
  background-color: #1BA0A6;
  top: 0;
  height: 60px;
  width: 100%;
  z-index: 9999999;
  text-align: center;
  border-bottom: 6px solid #315465;
  box-shadow: 0px -5px 10px 0px rgba(0, 0, 0, 0.15);
}
.bbook-update-banner p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 20px;
  margin-left: 140px;
  text-shadow: 1px 1px 2px rgb(76, 76, 76);
}
.bbook-update-banner .button {
  margin-left: 10px;
  width: 90px;
  height: 30px;
  background-color: #315465;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  float: right;
  margin-top: -5px;
  text-shadow: 1px 1px 2px rgb(111, 111, 111);
}
.bbook-update-banner .button:hover {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15);
}
.bbook-update-banner .button:active {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}.table-row-hover:hover {
  cursor: pointer;
  background-color: #f9f9f9;
}

.table-row-details {
  width: 100%;
}

.details-container {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 600px;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
}

.simple-table {
  border-collapse: collapse;
}

.simple-th {
  background: #F5F5F5;
}

.simple-th,
.simple-td {
  border: 1px solid #ccc;
  padding: 8px;
}

.asset-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

.migration-info {
  font-size: 14.2px;
  color: #1565C0;
  border: 1px solid #1565C0;
  border-radius: 5px;
  padding-left: 20px;
  padding-right: 20px;
  width: 80%;
}

.options-container {
  border: 1px solid #ccc;
}

.input-ratio {
  width: 100px;
  padding-left: 5px;
}.date_filters {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}.date_filters {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}.nofity-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 4px;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
  transition: all 0.3s;
  color: #000;
}
.nofity-button:hover {
  background-color: #e0e0e0;
}.nofity-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 4px;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
  transition: all 0.3s;
  color: #000;
}
.nofity-button:hover {
  background-color: #e0e0e0;
}.nofity-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 4px;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
  transition: all 0.3s;
  color: #000;
}
.nofity-button:hover {
  background-color: #e0e0e0;
}.commissions-report-details-view {
  height: 90%;
  width: 50%;
  background-color: #fff;
  position: fixed;
  top: 61px;
  right: 0;
  border-left: 3px solid #E0E0E0;
  padding: 20px;
  z-index: 99999;
  display: none;
  overflow-y: auto;
}

.button-close-container {
  display: flex;
  justify-content: flex-end;
}

.commissions-report-buttons-container {
  float: right;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.date-picker-container {
  float: right;
  padding-left: 80%;
}

.date-info-log {
  float: right;
}
.date-info-log p {
  display: inline-block;
  margin-right: 5px;
  margin-top: -10px;
  font-size: 13.5px;
}

.rebalance-fees-switch {
  float: right;
  margin-top: 10px;
  margin-bottom: 5px;
}.web3-listener-status-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background-color: #282C34;
  color: #fff;
  padding: 5px;
  font-size: 13.8px;
  font-weight: bold;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 8px;
  width: 200px;
  text-align: center;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-top-right-radius: 15px;
}
.web3-listener-status-banner .web3-listener-status-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
}

.success-status {
  content: "";
  height: 10px;
  width: 10px;
  background-color: #00FF00;
  border-radius: 50%;
}

.error-status {
  content: "";
  height: 10px;
  width: 10px;
  background-color: #FF0000;
  border-radius: 50%;
}

.web3-listener-status-power-icon {
  padding-top: 3px;
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.467);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
}
.web3-listener-status-description-text {
  color: #fff;
  position: fixed;
  bottom: 0;
  z-index: 9999;
  margin-left: 230px;
  background-color: #282C34;
  border: 1px solid #000;
  margin-bottom: 2.5px;
  font-size: 13.8px;
  font-weight: bold;
  padding: 4px;
  border-radius: 8px;
  padding-left: 12px;
  padding-right: 12px;
}.commissions-report-details-view {
  height: 90%;
  width: 50%;
  background-color: #fff;
  position: fixed;
  top: 61px;
  right: 0;
  border-left: 3px solid #E0E0E0;
  padding: 20px;
  z-index: 99999;
  display: none;
  overflow-y: auto;
}

.button-close-container {
  display: flex;
  justify-content: flex-end;
}

.commissions-report-buttons-container {
  float: right;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.date-picker-container {
  float: right;
  padding-left: 80%;
}

.date-info-log {
  float: right;
}
.date-info-log p {
  display: inline-block;
  margin-right: 5px;
  margin-top: -10px;
  font-size: 13.5px;
}

.refresh-button {
  float: right;
}.rtest-main-container {
  margin-top: 30px;
}

.info-text {
  font-size: 13.5px;
  color: #665;
  float: right;
}

.total-balance-db-gbp {
  margin-left: 22px;
}

.asset-list-container {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}.vaults-container {
  flex-direction: row;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.vault-card {
  margin: 1rem 0;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-right: 1.5rem;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.vault-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.vault-selected {
  background-color: #f7f7f7;
  border: 2px solid #000;
}

.wallet-info-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
  padding-left: 20px;
  padding-top: 20px;
}

.wallet-asset-info {
  margin-left: 40px;
  border-radius: 4px;
}.reports__navigation-container {
  float: right;
  margin-bottom: 15px;
}.user-global-report-filter-container {
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 20px;
}

.time-range {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-family: Arial, sans-serif;
  display: inline-block;
}
.time-range__title {
  font-size: 1.1rem;
  margin: 0;
}
.time-range__controls {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.time-range__input {
  width: 50px;
  padding: 0.4rem;
  font-size: 1rem;
  border: 1px solid rgba(204, 204, 204, 0.5137254902);
  border-radius: 10px;
  margin-left: -5px;
}
.time-range__select {
  padding: 0.4rem;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid rgba(204, 204, 204, 0.5137254902);
  border-radius: 10px;
}

.csv-trade {
  cursor: pointer;
  vertical-align: text-top;
  margin-left: 2px;
  color: #007bff;
}
.csv-trade:hover {
  font-weight: bold;
}

.user-email {
  font-size: 12px !important;
}.info-box {
  background-color: #f0f0f0;
  border-left: 4px solid #007bff;
  padding: 10px 15px;
  margin-bottom: 20px;
  width: 70%;
  text-align: justify;
}

.mismatch-title {
  color: #EE404C;
  float: right;
}

.non-mismatch-title {
  color: #0DB561;
  float: right;
}

.expand-button {
  background-color: transparent;
  border: none;
  color: #007bff;
  cursor: pointer;
  text-decoration: underline;
  font-size: 1em;
  margin-top: 20px;
  margin-bottom: -10px;
}

.custom-t-header {
  background-color: #000;
  color: #fff !important;
}

.patch-icon {
  position: absolute;
  padding-top: 18px;
  margin-left: -20px;
  cursor: pointer;
}
.patch-icon:hover {
  color: #007bff;
}

.patch-instruction {
  margin-top: 2px;
  font-size: 0.9em;
  color: #555;
  margin-bottom: 10px;
}
.patch-instruction i {
  vertical-align: middle;
  color: #000;
}.warning-row {
  background-color: #fff3cd;
}

.allocations ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
}
.allocations .allocation-item {
  display: flex;
  justify-content: space-between;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.95rem;
}
.allocations .allocation-item.new {
  background: #e8f7ef;
  color: #00a36c;
  border-color: #b7e1c0;
}
.allocations .allocation-item.out {
  background: #fceaea;
  color: #d62828;
  border-color: #f2b6b6;
}
/* ── Header ── */
.recon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.recon-header__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.recon-header__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(25, 146, 151, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.recon-header__icon i {
  font-size: 22px;
  color: #199297;
}

.recon-header__title {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.recon-header__user-badge {
  font-size: 13px;
  font-weight: 600;
  color: #199297;
  background: rgba(25, 146, 151, 0.08);
  padding: 3px 10px;
  border-radius: 8px;
  margin-left: 10px;
}

.recon-header__subtitle {
  font-size: 13px;
  color: #94a3b8;
  margin: 2px 0 0;
}

/* ── Date Nav ── */
.recon-date-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.recon-date-nav__btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}
.recon-date-nav__btn i {
  font-size: 20px;
  color: #374151;
}
.recon-date-nav__btn:hover:not(:disabled) {
  border-color: #199297;
  background: rgba(25, 146, 151, 0.06);
}
.recon-date-nav__btn:hover:not(:disabled) i {
  color: #199297;
}
.recon-date-nav__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ── KPI Cards ── */
.recon-kpi-row {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.recon-kpi {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px 22px;
  min-width: 200px;
  flex: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.recon-kpi__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.recon-kpi__icon i {
  font-size: 20px;
}
.recon-kpi__icon--gbp {
  background: rgba(25, 146, 151, 0.08);
}
.recon-kpi__icon--gbp i {
  color: #199297;
}
.recon-kpi__icon--usd {
  background: rgba(99, 102, 241, 0.08);
}
.recon-kpi__icon--usd i {
  color: #6366f1;
}
.recon-kpi__icon--assets {
  background: rgba(245, 158, 11, 0.08);
}
.recon-kpi__icon--assets i {
  color: #f59e0b;
}

.recon-kpi__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.recon-kpi__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
}

.recon-kpi__value {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

/* ── Toolbar ── */
.recon-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.recon-view-toggle {
  display: flex;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 3px;
}

.recon-view-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.15s;
}
.recon-view-toggle__btn i {
  font-size: 15px;
}
.recon-view-toggle__btn--active {
  background: #fff;
  color: #199297;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* ── Cards Grid ── */
.recon-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.recon-asset-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
  transition: all 0.15s;
}
.recon-asset-card:hover {
  border-color: #199297;
  box-shadow: 0 4px 16px rgba(25, 146, 151, 0.1);
  transform: translateY(-1px);
}

.recon-asset-card__header {
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.recon-asset-card__rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.recon-asset-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recon-asset-card__row--muted {
  opacity: 0.55;
}

.recon-asset-card__label {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.recon-asset-card__val {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

/* ── Skeleton ── */
@keyframes recon-shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}
.recon-skel {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 800px 100%;
  animation: recon-shimmer 1.5s infinite ease-in-out;
  border-radius: 6px;
}
.recon-skel--value {
  width: 120px;
  height: 24px;
}
.recon-skel--short {
  width: 50px;
}
.recon-skel--circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}
.recon-skel--text {
  width: 80px;
  height: 14px;
}
.recon-skel--label {
  width: 40px;
  height: 10px;
}
.recon-skel--num {
  width: 70px;
  height: 12px;
}

.recon-asset-card--skeleton {
  pointer-events: none;
}
.recon-asset-card--skeleton .recon-asset-card__header {
  border-bottom-color: #f3f4f6;
}

/* ── Card Detail Modal ── */
.recon-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: recon-fadeIn 0.15s ease;
}

.recon-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  width: 820px;
  max-width: 95vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  animation: recon-slideUp 0.2s ease;
  overflow: hidden;
}

.recon-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.recon-modal__title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.recon-modal__badges {
  display: flex;
  gap: 8px;
}

.recon-modal__badge {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}
.recon-modal__badge--gbp {
  background: rgba(25, 146, 151, 0.08);
  color: #199297;
}
.recon-modal__badge--usd {
  background: rgba(99, 102, 241, 0.08);
  color: #6366f1;
}

.recon-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s;
}
.recon-modal__close:hover {
  background: #fee2e2;
  color: #ef4444;
}

.recon-modal__search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 20px 8px;
  padding: 0 14px;
  height: 40px;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  transition: all 0.2s;
}
.recon-modal__search:focus-within {
  border-color: #199297;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(25, 146, 151, 0.08);
}
.recon-modal__search > i {
  font-size: 17px;
  color: #94a3b8;
  flex-shrink: 0;
}
.recon-modal__search > input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 13px;
  color: #111827;
  outline: none;
  height: 100%;
}
.recon-modal__search > input::placeholder {
  color: #9ca3af;
}

.recon-modal__search-clear {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: none;
  background: #e5e7eb;
  color: #64748b;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s;
}
.recon-modal__search-clear:hover {
  background: #fee2e2;
  color: #ef4444;
}

.recon-modal__body {
  overflow-y: auto;
  padding: 0 8px 16px;
}

@keyframes recon-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes recon-slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ── Legacy ── */
.indicator-list {
  margin-top: 10px;
  list-style: none;
  padding-left: 20px;
}
.indicator-list li {
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.indicator-list li i {
  margin-right: 10px;
}

.subtable-container {
  padding-left: 20px;
  width: 95%;
}

.ledger-match-details-container {
  display: inline-block;
  margin-left: 10px;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 12px;
}

.ledger-match-icon-container {
  display: inline-block;
  position: absolute;
  margin-left: -10px;
  margin-top: 20px;
}

.info-label {
  font-size: 12px;
  color: #665;
  padding-bottom: 10px;
}.indicator-list {
  margin-top: 10px;
  list-style: none;
  padding-left: 20px;
}
.indicator-list li {
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.indicator-list li i {
  margin-right: 10px;
}

.subtable-container {
  padding-left: 20px;
  width: 95%;
}

.ledger-match-details-container {
  display: inline-block;
  margin-left: 10px;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
  border-radius: 10px;
  font-size: 12px;
}

.ledger-match-icon-container {
  display: inline-block;
  position: absolute;
  margin-left: -10px;
  margin-top: 20px;
}

.info-label {
  font-size: 12px;
  color: #665;
  padding-bottom: 10px;
}.stats-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.stats-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.stats-title i {
  color: #199297;
  font-size: 24px;
}

.stats-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 4px 0 0;
}

.stats-header__period {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  background: rgba(25, 146, 151, 0.08);
  padding: 6px 12px;
  border-radius: 8px;
}
.stats-header__period i {
  color: #199297;
  font-size: 16px;
}

.stats-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.stats-preset-btn {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s ease;
}
.stats-preset-btn:hover {
  border-color: #199297;
  color: #199297;
}
.stats-preset-btn.active {
  background: #199297;
  color: white;
  border-color: #199297;
}

.stats-export-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.stats-export-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s ease;
}
.stats-export-btn i {
  font-size: 15px;
}
.stats-export-btn:hover {
  border-color: #199297;
  color: #199297;
  background: rgba(25, 146, 151, 0.08);
}

.stats-custom-dates {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.stats-date-input {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stats-date-input label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stats-date-input input {
  padding: 7px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 13px;
  color: #111827;
  outline: none;
  transition: border-color 0.15s;
}
.stats-date-input input:focus {
  border-color: #199297;
}

.stats-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.stats-kpi {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s;
}
.stats-kpi:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stats-kpi__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.stats-kpi__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stats-kpi__value {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
}

.stats-kpi__label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stats-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 20px;
  transition: box-shadow 0.2s;
}
.stats-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stats-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.stats-card__title i {
  color: #199297;
  font-size: 17px;
}

.stats-charts-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .stats-charts-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .stats-charts-row {
    grid-template-columns: 1fr;
  }
}

.stats-pie-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-pie-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
}

.stats-pie-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.stats-pie-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

.stats-pie-legend__name {
  color: #6b7280;
  flex: 1;
}

.stats-pie-legend__val {
  font-weight: 700;
  color: #111827;
}

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

.stats-top-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.stats-top-list__rank {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}

.stats-top-list__name {
  color: #6b7280;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stats-top-list__count {
  font-weight: 700;
  color: #111827;
}

.stats-card--table {
  margin-bottom: 24px;
}

.stats-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.stats-table-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.stats-search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 5px 10px;
}
.stats-search i {
  color: #9ca3af;
  font-size: 16px;
}
.stats-search input {
  border: none;
  background: transparent;
  font-size: 13px;
  color: #111827;
  outline: none;
  width: 160px;
}
.stats-search input::placeholder {
  color: #9ca3af;
}

.stats-filter-group {
  display: flex;
  gap: 2px;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 2px;
}

.stats-filter-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border: none;
  border-radius: 6px;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s;
}
.stats-filter-btn i {
  font-size: 14px;
}
.stats-filter-btn:hover {
  color: #111827;
}
.stats-filter-btn.active {
  background: white;
  color: #199297;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  font-weight: 600;
}

.stats-table-scroll {
  overflow-x: auto;
}

.stats-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.stats-table thead th {
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
  border-bottom: 2px solid #f3f4f6;
  white-space: nowrap;
}
.stats-table tbody tr {
  transition: background 0.1s;
}
.stats-table tbody tr:hover {
  background: #f9fafb;
}
.stats-table tbody tr td {
  padding: 10px 12px;
  font-size: 13px;
  color: #111827;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}

.stats-table-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stats-table-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.stats-table-name {
  font-weight: 600;
  font-size: 13px;
  color: #111827;
  white-space: nowrap;
}

.stats-table-id {
  font-size: 11px;
  color: #9ca3af;
}

.stats-table-email {
  color: #6b7280 !important;
  font-size: 12px !important;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stats-platform-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.stats-platform-tag i {
  font-size: 13px;
}
.stats-platform-tag.app {
  background: rgba(25, 146, 151, 0.1);
  color: #199297;
}
.stats-platform-tag.web {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.stats-sessions-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 2px 8px;
  border-radius: 6px;
  background: #f3f4f6;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
}
.stats-sessions-badge--clickable {
  cursor: pointer;
  transition: all 0.15s ease;
}
.stats-sessions-badge--clickable:hover {
  background: rgba(25, 146, 151, 0.08);
  color: #199297;
  transform: scale(1.08);
}

/* =====================================================
   SESSIONS MODAL
   ===================================================== */
.sessions-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.15s ease;
}

.sessions-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  width: 480px;
  max-width: 95vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.2s ease;
  overflow: hidden;
}

.sessions-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.sessions-modal__title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sessions-modal__name {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.sessions-modal__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.sessions-modal__count {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
}

.sessions-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: #f1f5f9;
  color: #6b7280;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s;
}
.sessions-modal__close:hover {
  background: #fee2e2;
  color: #ef4444;
}

.sessions-modal__body {
  overflow-y: auto;
  padding: 8px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sessions-modal__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 10px;
  transition: background 0.12s;
}
.sessions-modal__row:hover {
  background: #f8fafc;
}

.sessions-modal__row-index {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  min-width: 28px;
}

.sessions-modal__row-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}

.sessions-modal__row-date {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.sessions-modal__row-time {
  font-size: 11px;
  color: #9ca3af;
}

.sessions-modal__row-relative {
  font-size: 11px;
  font-weight: 600;
  color: #199297;
  background: rgba(25, 146, 151, 0.08);
  padding: 2px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stats-table-last {
  font-size: 12px !important;
  color: #9ca3af !important;
  white-space: nowrap;
}

.stats-bar-cell {
  width: 100%;
  min-width: 80px;
}

.stats-bar-bg {
  width: 100%;
  height: 6px;
  background: #f3f4f6;
  border-radius: 3px;
  overflow: hidden;
}

.stats-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.stats-table-footer {
  padding: 10px 12px 0;
  font-size: 12px;
  color: #9ca3af;
  text-align: right;
}

@keyframes skel-shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}
.skel {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
  background-size: 800px 100%;
  animation: skel-shimmer 1.6s ease-in-out infinite;
  border-radius: 6px;
}

.skel--circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.skel--circle-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.skel--text-lg {
  height: 22px;
  width: 60%;
  border-radius: 4px;
  margin-bottom: 6px;
}

.skel--text-md {
  height: 14px;
  border-radius: 4px;
}

.skel--text-sm {
  height: 10px;
  border-radius: 3px;
}

.skel--text-xs {
  height: 8px;
  width: 40px;
  border-radius: 3px;
}

.skel--badge {
  width: 48px;
  height: 20px;
  border-radius: 10px;
  flex-shrink: 0;
}

.skel--bar-inline {
  height: 6px;
  width: 80px;
  border-radius: 3px;
  flex: 1;
  max-width: 120px;
}

.skel--donut {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}
.skel--donut::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 35px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
}

.skel--donut-sm {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 8px;
  position: relative;
}
.skel--donut-sm::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
}

.skel--bar {
  width: 28px;
  border-radius: 4px 4px 0 0;
  flex-shrink: 0;
}

.stats-skeleton {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats-skeleton__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stats-skeleton__kpi {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.stats-skeleton__charts {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 14px;
}

.stats-skeleton__card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.stats-skeleton__card--pie {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stats-skeleton__card--bar {
  display: flex;
  flex-direction: column;
}
.stats-skeleton__card--table {
  padding: 20px;
}

.stats-skeleton__bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex: 1;
  min-height: 160px;
  padding-top: 12px;
}

.stats-skeleton__table-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
}.fund-perfomance-container {
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  overflow-y: auto;
  padding-left: 20%;
  padding-right: 20%;
  padding-top: 50px;
  font-size: 13.5px !important;
}

.fund-perfomance-info-container {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(35, 34, 34, 0.1);
}

.banner {
  background: linear-gradient(10deg, #373D51, #1BA3A8) !important;
  color: #ffffff;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 20px;
  height: 50px;
}
.banner h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  float: left;
  padding-top: 14px;
  padding-left: 15px;
}

.banner-logo {
  float: right;
  height: 50px;
  margin-top: 5px;
  margin-right: 15px;
}

.calculation-options {
  margin-top: 40px;
  text-align: center;
}
.calculation-options h3 {
  margin-bottom: 10px;
}
.calculation-options ul {
  list-style-type: none;
  padding-left: 20px;
}
.calculation-options ul li {
  margin-bottom: 5px;
  display: inline-block;
  margin-right: 15px;
}

.allocation-item-2 {
  display: flex;
  justify-content: space-between;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.95rem;
}

.fund-performance-core {
  font-family: "Inter", sans-serif;
  max-width: 1100px;
  margin: 2rem auto;
  color: #1a1a1a;
  background: #fff;
  /* ===== SUMMARY HEADER ===== */
  /* ===== COMPARISON VIEW ===== */
  /* ===== COLLAPSIBLE CARDS ===== */
  /* ===== RESPONSIVE ===== */
}
.fund-performance-core .fund-title {
  text-align: center;
  font-weight: 600;
  margin: 2rem 0 1rem;
}
.fund-performance-core .summary-header {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  padding: 1.5rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}
.fund-performance-core .summary-header .summary-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.fund-performance-core .summary-header .summary-cards .summary-card {
  flex: 1;
  min-width: 180px;
  background: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  text-align: center;
  margin: 0.5rem;
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fund-performance-core .summary-header .summary-cards .summary-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.fund-performance-core .summary-header .summary-cards .summary-card p {
  color: #555;
  margin-bottom: 0.25rem;
}
.fund-performance-core .summary-header .summary-cards .summary-card h3 {
  font-size: 1.4rem;
  margin: 0;
}
.fund-performance-core .summary-header .summary-cards .summary-card.pnl h3 {
  color: #00a36c;
}
.fund-performance-core .summary-header .summary-cards .summary-card.fees h3 {
  color: #ff7a4a;
}
.fund-performance-core .summary-header .summary-cards .summary-card.net h3 {
  color: #007bff;
}
.fund-performance-core .summary-header .compare-selectors {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.fund-performance-core .summary-header .compare-selectors label {
  color: #333;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}
.fund-performance-core .summary-header .compare-selectors select {
  background: #ffffff;
  color: #222;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease;
}
.fund-performance-core .summary-header .compare-selectors select:hover {
  border-color: #007bff;
}
.fund-performance-core .compare-view {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  margin: 2rem auto;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.fund-performance-core .compare-view h3 {
  color: #007bff;
  margin-bottom: 1.5rem;
}
.fund-performance-core .compare-view .compare-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.fund-performance-core .compare-view .compare-sections .compare-chart,
.fund-performance-core .compare-view .compare-sections .compare-pnl,
.fund-performance-core .compare-view .compare-sections .compare-summary {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 1rem;
}
.fund-performance-core .compare-view .compare-sections .compare-chart h4,
.fund-performance-core .compare-view .compare-sections .compare-pnl h4,
.fund-performance-core .compare-view .compare-sections .compare-summary h4 {
  color: #007bff;
  margin-bottom: 0.5rem;
}
.fund-performance-core .compare-view .compare-sections .compare-charts {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 1rem;
}
.fund-performance-core .compare-view .compare-sections .compare-summary p {
  margin: 0.3rem 0;
}
.fund-performance-core .compare-view .compare-sections .compare-summary .new-assets {
  color: #00a36c;
}
.fund-performance-core .compare-view .compare-sections .compare-summary .out-assets {
  color: #d62828;
}
.fund-performance-core .compare-view .compare-sections .compare-summary .same-assets {
  color: #555;
}
.fund-performance-core .compare-view .empty {
  color: #777;
  font-size: 0.95rem;
  text-align: center;
  margin: 1rem 0;
}
.fund-performance-core .rebalance-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.fund-performance-core .rebalance-card .rebalance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #f6f6f6;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
}
.fund-performance-core .rebalance-card .rebalance-header h3 {
  color: #1a1a1a;
  margin: 0;
}
.fund-performance-core .rebalance-card .rebalance-header .rebalance-date {
  font-size: 0.9rem;
  color: #777;
}
.fund-performance-core .rebalance-card .rebalance-header .collapse-btn {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #555;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.fund-performance-core .rebalance-card .rebalance-header .collapse-btn.open {
  transform: rotate(180deg);
}
.fund-performance-core .rebalance-card .rebalance-body {
  padding: 1rem 1.5rem;
  background: #ffffff;
}
.fund-performance-core .rebalance-card .rebalance-body h4 {
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}
.fund-performance-core .rebalance-card .rebalance-body .allocations ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
}
.fund-performance-core .rebalance-card .rebalance-body .allocations .allocation-item {
  display: flex;
  justify-content: space-between;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.95rem;
}
.fund-performance-core .rebalance-card .rebalance-body .allocations .allocation-item.new {
  background: #e8f7ef;
  color: #00a36c;
  border-color: #b7e1c0;
}
.fund-performance-core .rebalance-card .rebalance-body .allocations .allocation-item.out {
  background: #fceaea;
  color: #d62828;
  border-color: #f2b6b6;
}
.fund-performance-core .rebalance-card .rebalance-body .top-report {
  margin-top: 1rem;
}
.fund-performance-core .rebalance-card .rebalance-body .top-report .top-moves {
  font-size: 0.95rem;
}
.fund-performance-core .rebalance-card .rebalance-body .top-report .top-moves .new-top {
  color: #00a36c;
}
.fund-performance-core .rebalance-card .rebalance-body .top-report .top-moves .out-top {
  color: #d62828;
}
.fund-performance-core .rebalance-card .rebalance-body .pnl-section {
  margin-top: 1.5rem;
}
.fund-performance-core .rebalance-card .rebalance-body .pnl-section .pnl-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.fund-performance-core .rebalance-card .rebalance-body .pnl-section .pnl-cards .pnl-card {
  flex: 1;
  min-width: 160px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.fund-performance-core .rebalance-card .rebalance-body .pnl-section .pnl-cards .pnl-card p {
  color: #777;
  margin: 0 0 0.25rem;
}
.fund-performance-core .rebalance-card .rebalance-body .pnl-section .pnl-cards .pnl-card .pnl-value {
  color: #00a36c;
  font-weight: bold;
}
.fund-performance-core .rebalance-card .rebalance-body .pnl-section .pnl-cards .pnl-card .fee-value {
  color: #ff7a4a;
  font-weight: bold;
}
.fund-performance-core .rebalance-card .rebalance-body .pnl-section .pnl-cards .pnl-card.total .total-value {
  color: #007bff;
  font-weight: bold;
  font-size: 1.2rem;
}
.fund-performance-core .actions-table {
  margin-top: 1.5rem;
}
.fund-performance-core .actions-table h4 {
  color: #007bff;
  margin-bottom: 0.5rem;
}
.fund-performance-core .actions-table .table-wrapper {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.fund-performance-core .actions-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 600px;
}
.fund-performance-core .actions-table table thead {
  background: #f2f5f9;
}
.fund-performance-core .actions-table table thead th {
  font-weight: 600;
  padding: 0.6rem 0.8rem;
  color: #333;
  border-bottom: 1px solid #e5e5e5;
  text-align: left !important;
}
.fund-performance-core .actions-table table tbody tr {
  transition: background 0.2s ease;
}
.fund-performance-core .actions-table table tbody tr:hover {
  background: #f9fbfd;
}
.fund-performance-core .actions-table table tbody tr td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid #f1f1f1;
  vertical-align: middle;
  color: #333;
  text-align: left !important;
}
.fund-performance-core .actions-table table tbody tr td:nth-child(3), .fund-performance-core .actions-table table tbody tr td:nth-child(4), .fund-performance-core .actions-table table tbody tr td:nth-child(5), .fund-performance-core .actions-table table tbody tr td:nth-child(6) {
  text-align: right;
  font-family: "Roboto Mono", monospace;
}
.fund-performance-core .clear-compare {
  text-align: center;
  margin-top: 10px;
  cursor: pointer;
  color: #007bff;
  font-size: 13.5px;
}
.fund-performance-core .clear-compare span {
  text-decoration: underline;
}
.fund-performance-core .clear-compare:hover {
  color: #0056b3;
}
.fund-performance-core .loading-data {
  text-align: center;
  color: #777;
  font-size: 0.8rem;
  margin: 2rem 0;
}
.fund-performance-core .positive {
  color: #00a36c !important;
}
.fund-performance-core .negative {
  color: #d62828 !important;
}
.fund-performance-core .gray {
  color: #ababab !important;
}
.fund-performance-core .buy {
  color: #00a36c !important;
  font-weight: 600;
}
.fund-performance-core .sell {
  color: #d62828 !important;
  font-weight: 600;
}
.fund-performance-core .tag-buy {
  background: #e8f7ef;
  color: #00a36c;
  border: 2px solid #b7e1c0;
  padding: 2px 20px;
  font-size: 11px;
  text-align: center;
  border-radius: 10px;
}
.fund-performance-core .tag-sell {
  background: #fceaea;
  color: #d62828;
  border: 2px solid #f2b6b6;
  padding: 2px 20px;
  font-size: 11px;
  text-align: center;
  border-radius: 10px;
}
.fund-performance-core .total-pnl-note {
  font-size: 12px;
  color: #a3a3a3 !important;
  margin-top: 10px;
  letter-spacing: 0.01px;
  line-height: 15px !important;
  text-align: center;
}
.fund-performance-core .out-of-top {
  background: #fceaea !important;
  color: #d62828;
  border-top: 4px solid #f2b6b6;
  border-bottom: 4px solid #f2b6b6;
}
@media (max-width: 768px) {
  .fund-performance-core .summary-cards {
    flex-direction: column;
    align-items: center;
  }
  .fund-performance-core .compare-charts {
    flex-direction: column;
    align-items: center;
  }
  .fund-performance-core .pnl-cards {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 800px) {
  .fund-perfomance-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 850px) {
  .fund-perfomance-container {
    padding-left: 10%;
    padding-right: 10%;
  }
}
.allocation-index-mini-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  font-size: 0.52rem;
  font-weight: 600;
  color: #000;
  background: #fff;
  margin-left: 0.25rem;
  line-height: 1;
  vertical-align: text-top;
  transform: translateY(-1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: 2px solid #ccc;
}




* {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif !important;
}
html,
body {
  margin: 0px;
  font-size: 15.6px;
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  color: rgb(18, 19, 20);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #f4f6f9;
  color: #0f172a;
  overflow-x: hidden;
}
/* Global scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
.text-center {
  text-align: center !important;
}
.mt-5 {
  margin-top: 5px;
}
.m-0 {
  margin: 0px;
}
.m-5 {
  margin: 5px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-50 {
  margin-top: 50px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-20 {
  margin-bottom: 20px;
}
.ml-10 {
  margin-left: 10px;
}
.ml-20 {
  margin-left: 20px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mr-5 {
  margin-right: 5px;
}
.mr-10 {
  margin-right: 10px;
}
.mr-20 {
  margin-right: 20px;
}
.fs-20 {
  font-size: 20px;
}
.pointer {
  cursor: pointer;
}
.flex-gap25 {
  display: flex;
  gap: 25px;
  align-items: center;
}
.flex-gap25-normal {
  display: flex;
  gap: 25px;
}
.flex-normal {
  display: flex;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-justify-center {
  display: flex;
  justify-content: center;
}
.table-cell-vertical-header {
  padding: 5px !important;
  background-color: black;
  text-transform: capitalize;
  font-weight: 700 !important;
  color: white !important;
  width: 10%;
  text-align: center !important;
}
.table-cell-vertical-content {
  padding: 5px !important;
  display: flex !important;
  gap: 10px !important;
  border-bottom: none !important;
}
.tab-option {
  cursor: pointer;
}
.tab-option:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #1976D2;
          text-decoration-color: #1976D2;
  color: #1976D2;
}
.tab-separator {
  margin-left: 10px;
  margin-right: 10px;
}
.tab-selected {
  text-decoration: underline;
  -webkit-text-decoration-color: #1976D2;
          text-decoration-color: #1976D2;
  color: #1976D2;
}
.text-oblique {
  font-style: oblique;
}
.text-underline {
  text-decoration: underline;
}
.text-bold {
  font-weight: 700;
}
.text-italic {
  font-style: italic;
}
.fund-cross-pair-exchanges-table th,
.fund-cross-pair-exchanges-table td {
  border-collapse: collapse;
  text-align: center;
}
.fund-cross-pair-exchanges-table th {
  padding: 10px;
  background-color: black;
  text-transform: capitalize;
  font-weight: 700;
  color: white;
}
.fund-cross-pair-exchanges-table td {
  padding: 10px;
}
.mimic-bbook-table {
  width: 100%;
  margin: 0 auto;
}
.mimic-bbook-table th,
.mimic-bbook-table td {
  border: 1px solid #fff;
}
.mimic-bbook-table th {
  padding: 10px;
  background-color: black;
  text-transform: capitalize;
  font-weight: 700;
  color: white;
  width: 45%;
}
.mimic-bbook-table td {
  padding: 10px;
  border: 1px solid black;
  font-weight: 700;
}
.cursor-pointer {
  cursor: pointer;
}
.link {
  color: #1976D2;
  text-decoration: none;
  cursor: pointer;
}
.link:hover {
  text-decoration: underline;
}
.center {
  text-align: center;
  align-items: center;
  margin: 0 auto;
}
.button-kyc-check {
  background-color: #1976D2;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
.button-kyc-check:hover {
  background-color: #0D47A1;
}
h1 {
  display: block;
  font-size: 2em;
  -webkit-margin-before: 0.67em;
          margin-block-start: 0.67em;
  -webkit-margin-after: 0.67em;
          margin-block-end: 0.67em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
h2 {
  display: block;
  font-size: 1.5em;
  -webkit-margin-before: 0.83em;
          margin-block-start: 0.83em;
  -webkit-margin-after: 0.83em;
          margin-block-end: 0.83em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
h3 {
  display: block;
  font-size: 1.17em;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
h4 {
  display: block;
  -webkit-margin-before: 1.33em;
          margin-block-start: 1.33em;
  -webkit-margin-after: 1.33em;
          margin-block-end: 1.33em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
h5 {
  display: block;
  font-size: 0.83em;
  -webkit-margin-before: 1.67em;
          margin-block-start: 1.67em;
  -webkit-margin-after: 1.67em;
          margin-block-end: 1.67em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
.opacity {
  opacity: 0;
}
.test-suite-title {
  color: #0095FF;
}
.test-suite-table {
  width: 100%;
}
.test-suite-table th,
.test-suite-table td {
  border: 1px solid #fff;
}
.test-suite-table th {
  padding: 10px;
  background-color: #0095FF;
  text-transform: capitalize;
  font-weight: 700;
  color: white;
}
.test-suite-table td {
  padding: 10px;
  border: 1px solid black;
}
.test-suite-table tr:hover {
  background-color: rgba(0, 149, 255, 0.0509803922);
}
.test-suite-table th {
  text-align: left;
}
.test-suite-table td {
  text-align: left;
}
.test-suite-result-container {
  height: 100%;
  width: 72%;
  background-color: #fff;
  position: fixed;
  top: 10%;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-right: 20px solid #1E989F;
  border-left: 20px solid #1E989F;
  border-top: 20px solid #1E989F;
  border-radius: 50px;
  padding: 20px;
  z-index: 1000000000000000000000000000000;
  display: none;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}
/* =====================================================
   AUTH LAYOUT — Split panel (Corporate Portal style)
   ===================================================== */
.auth-layout {
  display: flex;
  height: 100vh;
  overflow: hidden;
}
/* ---- Left panel (dark branding) ---- */
.auth-layout__left {
  width: 50%;
  background: linear-gradient(170deg, #1a2e3b 0%, #0f1f2a 50%, #152a35 100%);
  display: flex;
  flex-direction: column;
  padding: 40px 50px;
  position: relative;
  overflow: hidden;
  /* Decorative glow */
}
.auth-layout__left::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 146, 151, 0.12) 0%, transparent 70%);
  top: -120px;
  right: -120px;
  pointer-events: none;
}
.auth-layout__left::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 146, 151, 0.08) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  pointer-events: none;
}
.auth-layout__logo {
  z-index: 1;
}
.auth-layout__logo img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.auth-layout__branding {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
.auth-layout__accent-bar {
  width: 50px;
  height: 4px;
  background: #199297;
  border-radius: 2px;
  margin-bottom: 24px;
}
.auth-layout__headline {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #199297;
  margin: 0 0 20px;
  letter-spacing: -1px;
}
.auth-layout__headline span {
  color: rgba(255, 255, 255, 0.85);
}
.auth-layout__tagline {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
  margin: 0 0 32px;
}
.auth-layout__badges {
  display: flex;
  gap: 10px;
}
.auth-layout__badge {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(25, 146, 151, 0.4);
  color: #199297;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.auth-layout__footer {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.25);
  margin: 0;
  z-index: 1;
}
/* ---- Right panel (white form) ---- */
.auth-layout__right {
  width: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
/* ---- Login card ---- */
.login-card {
  width: 100%;
  max-width: 400px;
}
.login-card__title {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 6px;
}
.login-card__subtitle {
  font-size: 14px;
  color: #94a3b8;
  margin: 0 0 36px;
}
.login-card__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.login-card__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.login-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #374151;
}
.login-card__input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0 16px;
  height: 48px;
  transition: all 0.2s;
}
.login-card__input-wrap:focus-within {
  border-color: #199297;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(25, 146, 151, 0.1);
}
.login-card__input-wrap > i {
  font-size: 18px;
  color: #94a3b8;
  flex-shrink: 0;
}
.login-card__input-wrap > input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #111827;
  outline: none;
  height: 100%;
}
.login-card__input-wrap > input::placeholder {
  color: #9ca3af;
}
.login-card__btn {
  margin-top: 8px;
  height: 50px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #199297 0%, #137074 100%);
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(25, 146, 151, 0.25);
}
.login-card__btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(25, 146, 151, 0.35);
}
.login-card__btn:active:not(:disabled) {
  transform: translateY(0);
}
.login-card__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
/* ---- Responsive ---- */
@media (max-width: 900px) {
  .auth-layout {
    flex-direction: column;
  }
  .auth-layout__left {
    width: 100%;
    padding: 30px 30px 20px;
    min-height: 220px;
  }
  .auth-layout__headline {
    font-size: 32px;
  }
  .auth-layout__branding {
    justify-content: flex-end;
  }
  .auth-layout__tagline {
    display: none;
  }
  .auth-layout__right {
    width: 100%;
    flex: 1;
  }
}
/* ---- Legacy classes (keep for other auth pages) ---- */
.auth__main {
  align-items: center;
  background: linear-gradient(199.77deg, #1BA3A8 1.24%, #373D51 72.26%);
  display: flex;
  justify-content: center;
  margin: 0px;
  height: 100vh;
}
.auth__box-container {
  display: flex;
  z-index: 2;
  flex-direction: column;
}
.auth__input {
  border: 1.24px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(248.72deg, rgba(255, 255, 255, 0.4) 3.01%, rgba(255, 255, 255, 0) 103.3%);
  -webkit-backdrop-filter: blur(51.993px);
          backdrop-filter: blur(51.993px);
  height: 46px;
  border-radius: 12.3793px;
  color: white;
  font-size: 17.331px;
  line-height: 21px;
  padding-left: 30px;
  padding-right: 30px;
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.1);
}
.auth__input:focus {
  outline: none;
  border: 1.24px solid;
}
.auth__input::placeholder {
  color: white;
}
.auth__form {
  display: flex;
  z-index: 2;
  flex-direction: column;
}
.auth__main_v2 {
  align-items: center;
  background: white;
  display: flex;
  justify-content: center;
  margin: 0px;
  height: 100vh;
}
.auth__main__gb10 {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0px;
  height: 100vh;
}
.auth__gb10__step1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.auth__box-container_v2 {
  display: flex;
  z-index: 2;
  flex-direction: column;
  padding: 40px;
  width: 380px;
  height: 608px;
}
.auth__box-container_v3 {
  display: flex;
  z-index: 2;
  flex-direction: column;
  padding: 40px;
  width: 380px;
}
.auth__container_input {
  position: relative;
  width: 100%;
}
.auth__error_login {
  margin: 0px;
  position: absolute;
  top: -20px;
  color: indianred;
  font-size: 12px;
  font-weight: bold;
  right: 0;
}
.auth__error_login_v2 {
  margin: 0px;
  position: absolute;
  top: 5px;
  color: indianred;
  font-size: 12px;
  font-weight: bold;
  right: 0;
}
.auth__input__gb10 {
  width: calc(100% - 60px);
  border: 1.24px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(248.72deg, rgba(255, 255, 255, 0.4) 3.01%, rgba(255, 255, 255, 0) 103.3%);
  height: 36px;
  color: black;
  font-size: 17.331px;
  line-height: 21px;
  padding-left: 30px;
  padding-right: 30px;
  border: 2px solid #979797;
  border-radius: 18.5px;
}
.auth__input__gb10:focus {
  outline: none;
}
.auth__input__gb10::placeholder {
  color: #979797;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}
.auth__corporate_font {
  color: white;
  margin: 0px;
  text-align: center;
  margin-bottom: 25px;
}
.auth__corporate_font_v2 {
  color: black;
  margin: 0px;
  text-align: center;
}
.auth__form_v2 {
  display: flex;
  align-items: center;
  z-index: 2;
  width: 100%;
  flex-direction: column;
}
.auth__gb10_register_text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  margin: 0px;
  cursor: pointer;
  color: #313c50;
}
.auth__gb10_register_text:hover {
  text-decoration: underline;
}
.auth__login_gb10_maincontainer {
  background: #ffffff;
  box-shadow: inset 0px -4px 15px rgba(0, 0, 0, 0.1), inset 0px 4px 17px rgba(0, 0, 0, 0.1);
  filter: drop-shadow(-15px 15px 25px rgba(0, 0, 0, 0.35));
  border-radius: 30px;
  width: 70%;
  max-width: 840px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  z-index: 85;
}
.auth__login_gb10_innercontainer {
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.auth__login_gb10_innercontainer-widget {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.auth__gb10_title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 33px;
  line-height: 51px;
  text-align: center;
  color: #313c50;
  margin: 0px;
  padding-bottom: 15px;
}
.auth__gb10_desc {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  margin: 0px;
  color: #313c50;
  padding-top: 15px;
}
.auth__gb10_desc_np {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  margin: 0px;
  color: #313c50;
}
.auth__gb10_flexcontainer {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}
.auth__gb10_walletconnect_text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  margin: 0px;
  color: #ffffff;
}
.auth__gb10_walletconnect_text_v2 {
  color: #fff;
  font-size: 16px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  line-height: 148.523%;
  margin: 0px;
}
.auth__gb10_walletconnect_text_topnav {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  margin: 0px;
  cursor: pointer;
  color: #ffffff;
}
.auth__gb10_emaillogin_text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  margin: 0px;
  color: #313c50;
}
.auth__gb10_walletconnect_icon {
  position: absolute;
  width: 60px;
  left: -20px;
}
.auth__gb10_walletconnect_icon_topnav {
  width: 30px;
  cursor: pointer;
}
.auth__gb10_or_text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  text-align: center;
  margin: 0px;
  color: #303649;
}
@media (max-width: 1000px) {
  .auth__login_gb10_maincontainer {
    min-width: 730px;
  }
}
.logo__filter-login {
  filter: drop-shadow(0px 7.20513px 7.20513px rgba(0, 0, 0, 0.09));
}
.button__btn-primary {
  background: #1ba3a8;
  box-shadow: 0px 4.95172px 16.0931px rgba(27, 163, 168, 0.19);
  border-radius: 12.3793px;
  border: none;
  color: white;
  font-style: normal;
  font-weight: 500;
  font-size: 22.2827px;
  line-height: 27px;
  width: 100%;
  height: 60px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.button__btn-sidebar {
  width: 295px;
  height: 35px;
  background: transparent;
  border: 0;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  color: white;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 25px;
  padding-right: 15px;
  transition: background-color 0.15s ease;
}
.button__btn-sidebar:hover {
  cursor: pointer;
  background-color: rgba(243, 244, 246, 0.2235294118);
  border-radius: 0 20px 20px 0;
  color: #fff !important;
}
.button__btn-sidebar-subitem {
  width: 250px;
  height: 35px;
  background: transparent;
  border: 0;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  color: white;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 35px;
  transition: background-color 0.15s ease;
}
.button__btn-sidebar-subitem:hover {
  cursor: pointer;
  background-color: rgba(243, 244, 246, 0.2235294118);
  border-radius: 0 20px 20px 0;
  color: #fff !important;
  width: 95%;
}
.button__btn-gradient {
  border-radius: 10px;
  height: 60px;
  font-size: 18px;
  line-height: 22px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: url(./../../../public/assets/patterns/button-left-pattern.svg), linear-gradient(217.44deg, #1ba3a8 21.68%, #373d51 106.17%);
  background-position: left;
}
.button__btn-black {
  background: linear-gradient(135deg, #199297 0%, #147a7e 100%);
  border-radius: 12px;
  width: 100%;
  height: 48px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 22px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 4px 14px rgba(25, 146, 151, 0.25);
  transition: all 0.2s;
}
.button__btn-black:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(25, 146, 151, 0.35);
}
.button__btn-black:active:not(:disabled) {
  transform: translateY(0);
}
.button__btn-black:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.button__btn-logout {
  width: 207px;
  height: 64px;
  background: transparent;
  border: 0;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  color: #CCD626;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 25px;
  margin-top: auto;
  margin-bottom: 25px;
}
.button__btn-logout:hover {
  cursor: pointer;
  font-weight: 700;
}
.button__btn-icon {
  width: 22px;
  height: 22px;
}
.button__navlink {
  font-style: normal;
  font-size: 15px;
  line-height: 20px;
  color: white;
  text-decoration: none;
  text-align: left;
  width: 100%;
  white-space: nowrap;
}
.mini-button {
  background-color: #1875D2;
  outline: none;
  border: none;
  color: #fff;
  padding: 4px 10px 4px 10px;
  cursor: pointer;
}
.checkboxContainer {
  display: flex;
  align-items: center;
}
.checkboxContainer .label {
  font-size: 14px;
}
.header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.pattern__top-right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  max-width: 100%;
  height: auto;
}
.pattern__bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  max-width: 100%;
  height: auto;
}
.sidebar__sidebar-container {
  display: flex;
  flex-direction: column;
  min-width: 200px;
  background: linear-gradient(3.89deg, #373D51 -15.94%, #1BA3A8 100%);
  height: 100%;
  position: fixed;
  overflow-y: auto;
  z-index: 1300;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}
.sidebar__sidebar-container .sidebar__sidebar-logo {
  padding-top: 30px;
  text-align: center;
  margin: 0 auto;
}
.sidebar__sidebar-container::-webkit-scrollbar {
  width: 4px;
}
/* Track */
.sidebar__sidebar-container::-webkit-scrollbar-track {
  background: transparent;
}
/* Handle */
.sidebar__sidebar-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.sidebar__sidebar-logo {
  max-width: 200px;
}
.sidebar__buttons-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 120px;
  margin-top: -30px;
}
.sidebar_items {
  padding: 2px;
  padding-top: 5px;
}
.sidebar__container-for-hover {
  position: relative;
  width: 100%;
}
.sidebar__green-thing {
  position: absolute;
  background-color: rgba(243, 244, 246, 0.2235294118);
  margin: auto;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 35px;
  left: -15px;
  border-radius: 16px;
}
.dashboard__router-container {
  display: flex;
  position: relative;
}
.dashboard__content-main {
  padding: 28px;
  width: 100%;
  margin-left: 220px;
  padding-top: 70px;
  min-height: 100vh;
}
.dashboard__form-notification {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #F7F5F1;
  padding: 20px;
  border-radius: 36px;
}
@media (max-width: 1023px) {
  .dashboard__content-main {
    width: 93%;
  }
}
@media (max-width: 1669px) {
  .dashboard__content-main {
    width: 93%;
  }
}
@media (max-width: 1023px) {
  .dashboard__content-main {
    width: 93%;
  }
}
.loading__main {
  align-items: center;
  background: linear-gradient(199.77deg, #1BA3A8 1.24%, #373D51 72.26%);
  display: flex;
  justify-content: center;
  margin: 0px;
  height: 100vh;
  flex-direction: column;
}
.loading__internal-loading-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.error__error-container {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(199.77deg, #1BA3A8 1.24%, #373D51 72.26%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.error__error-main {
  width: 300px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error__error-h3 {
  text-align: center;
  color: white;
  font-weight: 400;
}
.error__internal-error-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.fixed-center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.header-title {
  font-size: 1.5rem;
  font-weight: 600;
}
.content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 10px;
}
.footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
  gap: 10px;
}
.button {
  font-weight: 600;
}
.button-cancel {
  color: gray;
}
.payments__main-container {
  width: 450px;
  height: 680px;
  filter: drop-shadow(0px 8px 14px rgba(0, 0, 0, 0.15));
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: solid 40px transparent;
  position: relative;
  overflow-y: scroll;
}
.payments__title-1 {
  font-size: 34px;
  font-weight: 700;
  color: "#1F2024";
  margin: 0px;
  text-align: center;
}
.payments__main-container::-webkit-scrollbar {
  width: 8px;
  /* width of the entire scrollbar */
  height: 8px;
  background: transparent;
  background-color: transparent;
  background-clip: padding-box;
}
.payments__main-container::-webkit-scrollbar-track {
  background: transparent;
  /* color of the tracking area */
  background-clip: padding-box;
}
.payments__main-container::-webkit-scrollbar-thumb {
  background-color: rgba(107, 114, 128, 0.28);
  /* color of the scroll thumb */
  border-radius: 10px;
  /* roundness of the scroll thumb */
  border: 1px solid transparent;
  /* creates padding around scroll thumb */
  background-clip: padding-box;
}
.payments__subtitle-1 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 29px;
  text-align: center;
  color: black;
  margin: 0px;
}
.payments__button-1 {
  background: #1BA2A7;
  height: 70px;
  border-radius: 5px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 29px;
  text-align: center;
  color: #ffffff;
  border: none;
  width: 100%;
  transition: 0.2s ease;
  cursor: pointer;
}
.payments__button-1:disabled {
  background: #e8e9ed;
  color: #b3b3b3;
  cursor: not-allowed;
}
.payments__button-1:hover:enabled {
  transition: 0.2s ease;
  background: #1BA2A7;
  opacity: 0.8;
}
.payments__button-1_v2 {
  background: #1BA2A7;
  height: 50px;
  border-radius: 5px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  border: none;
  width: 100%;
  transition: 0.2s ease;
  cursor: pointer;
}
.payments__button-1_v2:disabled {
  background: #e8e9ed;
  color: #b3b3b3;
  cursor: not-allowed;
}
.payments__button-1_v2:hover:enabled {
  transition: 0.2s ease;
  background: #1BA2A7;
  opacity: 0.8;
}
.payments__little-font {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 13px;
  text-align: center;
  color: black;
  margin: 0px;
}
.payments__little-font-logout {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  text-align: center;
  color: #313c50;
  margin: 0px;
}
.payments__little-font-logout:hover {
  text-decoration: underline;
  cursor: pointer;
}
.payments__bottom-qredo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  gap: 6px;
}
.payments__get-started-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 56px;
  padding-bottom: 20px;
  height: 100%;
  position: relative;
}
.payments__get-started-pattern {
  position: absolute;
  top: 155px;
  z-index: 1;
  overflow: hidden;
  width: 530px !important;
}
.payments__subtitle-1_v2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: black;
  margin: 0px;
}
.payments__subtitle-1_v3 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: black;
  margin: 0px;
}
.payments__logo-container {
  margin-bottom: auto;
}
.payments__subtitle-1-bis {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #1BA2A7;
  margin: 0px;
}
.payments__subtitle-1-bis:hover {
  text-decoration: underline;
  cursor: pointer;
}
.payments__logo-container_v2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: auto;
}
.payments__titles-main-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 5px;
}
.payments__title-h1 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  margin: 0px;
  color: #313c50;
}
.payments__subtitle-p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  margin: 0px;
  color: #313c50;
}
.payments__subtitle-p2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  margin: 0px;
  color: #313c50;
}
.payments__subtitle-p3 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  margin: 0px;
  color: #313c50;
}
.payments__source-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-evenly;
}
.payments__source-options-container {
  background: #f4f5f9;
  border-radius: 20px;
  padding: 30px;
  cursor: pointer;
  transition: 0.2s ease;
}
.payments__source-options-container:hover {
  transition: 0.2s ease;
  background: #e8e9ed;
}
.payments__source-options-container-bis {
  background: #f4f5f9;
  border-radius: 20px;
  padding: 30px;
  margin-top: 44px;
  height: -webkit-fill-available;
  margin-bottom: 25px;
  width: calc(100% - 60px);
}
.payments__input-basic {
  background: #ffffff;
  box-shadow: 0px 0.873874px 12.8896px rgba(0, 0, 0, 0.18);
  border-radius: 10px !important;
}
.payments__input-basic_v2 {
  background: #ffffff;
  /* aS */
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e0e1e4;
}
.payments__source-option-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.payments__arrow-next-source-option {
  margin-left: auto;
}
.payments__selected-option-container-inner {
  display: flex;
  justify-content: center;
  height: 85%;
  align-items: center;
}
.payments__selected-option-container-inner-gbprods {
  display: flex;
  justify-content: center;
  height: 85%;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
.inputs__input-primary {
  background-color: white;
  padding: 20px;
  font-size: 16px;
  outline: none;
  border: 0;
  -webkit-backdrop-filter: blur(48.2659px);
          backdrop-filter: blur(48.2659px);
  border-radius: 11px;
}
.inputs__input-primary-dense {
  background-color: white;
  padding: 10px;
  font-size: 16px;
  height: 40px;
  outline: none;
  border: 0;
  display: flex;
  gap: 25px;
  border-radius: 11px;
  align-items: center;
}
.inputs__textarea-primary {
  background-color: white;
  padding: 20px;
  height: 150px;
  font-size: 16px;
  outline: none;
  border: 0;
  -webkit-backdrop-filter: blur(48.2659px);
          backdrop-filter: blur(48.2659px);
  border-radius: 11px;
}
.inputs__input-checkbox {
  background-color: white;
  padding: 20px;
  font-size: 16px;
  outline: none;
  border: 0;
  -webkit-backdrop-filter: blur(48.2659px);
  backdrop-filter: blur(48.2659px);
  border-radius: 11px;
  display: flex;
  justify-content: space-between;
}
.sof__card-container {
  background: #FFFFFF;
  box-shadow: 0px 7px 23px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 35px;
  padding: 35px;
}
.sof__card-container h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #373D51;
}
.sof__card-container p {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #373D51;
}
.sof__card-data-container {
  display: flex;
  justify-content: space-between;
}
.otc__searchbar {
  display: flex;
  gap: 25px;
  padding: 15px;
}
.otc__item-dense {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}
.otc__otc-form-dense {
  width: 500px;
}
.otc__p-title {
  min-width: 150px;
  margin: 0px;
  font-weight: 600;
}
/* =====================================================
   OTC ADD FORM — Modern card style
   ===================================================== */
.otc-add-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}
.otc-add-header__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(25, 146, 151, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.otc-add-header__icon i {
  font-size: 22px;
  color: #199297;
}
.otc-add-header h1 {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}
.otc-add-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}
.otc-add-nav__link {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.15s;
}
.otc-add-nav__link:hover {
  background: #f1f5f9;
  color: #111827;
}
.otc-add-nav__link--active {
  background: rgba(25, 146, 151, 0.08);
  color: #199297;
}
.otc-add-nav__divider {
  width: 1px;
  height: 16px;
  background: #e2e8f0;
  margin: 0 4px;
}
.otc-add-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px 32px 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  /* Section dividers */
  /* Override MUI TextField — rounded outlined style */
  /* Select arrow */
  /* Autocomplete overrides */
  /* Currency suffix labels */
  /* Row styling */
  /* Checkbox / Radio / Switch styling */
  /* TextareaAutosize */
  /* Alerts inside form */
}
.otc-add-form__section {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}
.otc-add-form__section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.otc-add-form__section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #199297;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.otc-add-form__section-title i {
  font-size: 16px;
}
.otc-add-form .MuiInput-underline::before, .otc-add-form .MuiInput-underline::after,
.otc-add-form .MuiInput-root::before,
.otc-add-form .MuiInput-root::after {
  display: none !important;
}
.otc-add-form .MuiInputBase-root {
  background: #f9fafb !important;
  border: 1.5px solid #e5e7eb !important;
  border-radius: 10px !important;
  padding: 6px 14px !important;
  transition: all 0.2s !important;
  min-height: 42px !important;
}
.otc-add-form .MuiInputBase-root:hover:not(.Mui-disabled) {
  border-color: #cbd5e1 !important;
}
.otc-add-form .MuiInputBase-root.Mui-focused {
  border-color: #199297 !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(25, 146, 151, 0.08) !important;
}
.otc-add-form .MuiInputBase-root.Mui-disabled {
  background: #f3f4f6 !important;
  opacity: 0.65;
}
.otc-add-form .MuiInputBase-input {
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 4px 0 !important;
  color: #111827 !important;
}
.otc-add-form .MuiInput-input {
  font-size: 14px !important;
}
.otc-add-form .MuiSelect-icon {
  color: #94a3b8 !important;
  right: 8px !important;
}
.otc-add-form .MuiAutocomplete-root .MuiInputBase-root {
  padding: 4px 14px !important;
  padding-right: 56px !important;
}
.otc-add-form .MuiAutocomplete-root .MuiAutocomplete-input {
  padding: 4px 0 !important;
  min-width: 0 !important;
}
.otc-add-form .MuiAutocomplete-root .MuiAutocomplete-endAdornment {
  right: 10px !important;
}
.otc-add-form .MuiTypography-root {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #64748b !important;
  white-space: nowrap;
}
.otc-add-form .otc__item-dense {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 6px 0;
  min-height: 48px;
}
.otc-add-form .otc__p-title {
  min-width: 140px;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}
.otc-add-form .MuiCheckbox-root {
  color: #cbd5e1 !important;
}
.otc-add-form .MuiCheckbox-root.Mui-checked {
  color: #199297 !important;
}
.otc-add-form .MuiRadio-root {
  color: #cbd5e1 !important;
}
.otc-add-form .MuiRadio-root.Mui-checked {
  color: #199297 !important;
}
.otc-add-form .MuiSwitch-switchBase.Mui-checked {
  color: #199297 !important;
}
.otc-add-form .MuiSwitch-switchBase.Mui-checked + .MuiSwitch-track {
  background-color: #199297 !important;
}
.otc-add-form .MuiFormControlLabel-label {
  font-size: 13px !important;
  font-weight: 500 !important;
}
.otc-add-form textarea {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.2s;
  outline: none;
}
.otc-add-form textarea:focus {
  border-color: #199297;
  box-shadow: 0 0 0 3px rgba(25, 146, 151, 0.08);
}
.otc-add-form .MuiAlert-root {
  border-radius: 10px !important;
  font-size: 13px !important;
  margin-bottom: 12px;
}
/* =====================================================
   OTC ALERTS — Custom styled alerts
   ===================================================== */
.otc-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
.otc-alert > i {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.otc-alert > span {
  flex: 1;
}
.otc-alert--warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}
.otc-alert--warning > i {
  color: #f59e0b;
}
.otc-alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.otc-alert--error > i {
  color: #ef4444;
}
.otc-alert--info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}
.otc-alert--info > i {
  color: #3b82f6;
}
.otc-alert--success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.otc-alert--success > i {
  color: #22c55e;
}
.otc-alert__action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 700;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
  margin-left: 4px;
}
.otc-alert__action i {
  font-size: 15px;
}
.otc-alert__action:hover {
  opacity: 0.8;
}
/* Submit button override */
.otc-add-form .button-black-container {
  margin-top: 8px;
}
.otc-add-form .button-black-container button {
  background: linear-gradient(135deg, #199297 0%, #137074 100%) !important;
  border-radius: 12px !important;
  height: 48px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  box-shadow: 0 4px 16px rgba(25, 146, 151, 0.25) !important;
  transition: all 0.2s !important;
}
.otc-add-form .button-black-container button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(25, 146, 151, 0.35) !important;
}
.otc-add-form .button-black-container button:disabled {
  opacity: 0.5;
}
.cp__main-contanier {
  display: flex;
  gap: 25px;
  flex-direction: column;
  align-items: flex-start;
}
.users__main-container {
  width: 100%;
}
.users__actions-container {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex-direction: row;
  font-size: 13px;
  background-color: #fafbfc;
  border: 1px solid #e4e7ec;
  border-left: 3px solid #199297;
  border-radius: 10px;
  padding: 8px 12px;
  margin-top: 10px;
}
.users__header {
  display: flex;
  gap: 25px;
  align-items: center;
}
.users__hover_ib:hover {
  background-color: #e6f7ff;
}
.users__support-main-container {
  padding-left: 63px;
}
.users__support-item {
  display: flex;
  gap: 25px;
  width: 400px;
  justify-content: space-between;
}
.users__text-item {
  margin: 2px;
}
.users__searchbar {
  display: flex;
  gap: 25px;
  padding-bottom: 5px;
  align-items: flex-end;
}
.users__external-links {
  margin: 0px;
  cursor: pointer;
  color: #374151;
  font-size: 11.5px;
  font-weight: 500;
  padding: 2px 9px;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #d1d5db;
  white-space: nowrap;
  line-height: 1.6;
  transition: background-color 0.12s ease, color 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
  -webkit-user-select: none;
          user-select: none;
}
.users__external-links:hover {
  background-color: #e8f7f7;
  color: #199297;
  border-color: #7fcdd0;
  box-shadow: 0 1px 3px rgba(25, 146, 151, 0.12);
  text-decoration: none;
}
.users__external-links-active {
  background-color: #199297 !important;
  color: #fff !important;
  border-color: #199297 !important;
  box-shadow: 0 1px 4px rgba(25, 146, 151, 0.35) !important;
  text-decoration: none !important;
}
.users__external-links-active:hover {
  background-color: #147a7f !important;
  border-color: #147a7f !important;
  color: #fff !important;
}
.users__submenu {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 4px 0 4px 136px;
  gap: 4px;
  border-bottom: 1px solid #f0f1f3;
  transition: background-color 0.1s ease;
}
.users__submenu:last-child {
  border-bottom: none;
}
.users__submenu:hover {
  background-color: #f9fafb;
}
.users__submenu > p:first-child {
  position: absolute;
  left: 2px;
  top: 5px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  width: 128px;
  line-height: 1.3;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.users__submenu > p:first-child i {
  font-size: 14px;
  color: #199297;
  flex-shrink: 0;
}
.reports__navigation {
  display: flex;
  justify-content: center;
  gap: 25px;
  align-items: center;
}
.reports__select-trader-container {
  display: flex;
  gap: 25px;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 10px;
}
.reports__user-balances {
  padding-left: 250px;
  width: 100%;
  overflow-x: hidden;
  padding-right: 20px;
  padding-bottom: 50px;
  padding-top: 50px;
}
.reports__container-title {
  display: flex;
  gap: 25px;
  align-items: center;
}
.reports__button-navigation-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.avatar__container {
  position: absolute;
  display: flex;
  right: 5%;
  align-items: center;
  gap: 25px;
}
.chat__main_container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.chat__inner_container {
  display: flex;
  height: 600px;
  width: 600px;
  flex-direction: column;
  overflow-y: scroll;
  padding-left: 13px;
  padding-right: 5px;
  gap: 20px;
  padding-bottom: 5px;
  padding-top: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.chat__sentby {
  position: absolute;
  margin: 0px;
  font-size: 10px;
  left: 5px;
  top: -15px;
  color: black;
}
.chat__sentat {
  position: absolute;
  margin: 0px;
  font-size: 10px;
  right: 5px;
  bottom: -13px;
  color: black;
  display: flex;
  align-items: center;
  gap: 4px;
}
.chat__inner_container::-webkit-scrollbar {
  width: 8px; /* width of the entire scrollbar */
  height: 8px;
  background: transparent;
  background-color: transparent;
  background-clip: padding-box;
}
.chat__inner_container::-webkit-scrollbar-track {
  background: transparent; /* color of the tracking area */
  background-clip: padding-box;
}
.chat__inner_container::-webkit-scrollbar-thumb {
  background-color: rgba(107, 114, 128, 0.28); /* color of the scroll thumb */
  border-radius: 10px; /* roundness of the scroll thumb */
  border: 1px solid transparent; /* creates padding around scroll thumb */
  background-clip: padding-box;
}
.chat__client_bubble {
  width: 70%;
  background-color: #e4e6eb;
  margin: 15px;
  padding: 10px;
  border-radius: 18px;
  text-wrap: wrap;
  overflow-wrap: break-word;
  position: relative;
  font-size: 15px;
}
.chat__support_bubble {
  width: 70%;
  font-size: 15px;
  background-color: #615bf6;
  color: white;
  margin: 15px;
  padding: 10px;
  border-radius: 18px;
  align-self: flex-end;
  text-wrap: wrap;
  overflow-wrap: break-word;
  position: relative;
}
.chat__container_dashboard {
  display: flex;
  width: 100%;
  gap: 25px;
}
.chat__container_users {
  height: 100%;
  width: 250px;
  gap: 15px;
  display: flex;
  flex-direction: column;
}
.chat__container_actual_chat {
  height: 100%;
  width: 100%;
}
.chat__container_users_two {
  height: 100%;
  width: 250px;
  display: flex;
  flex-direction: column;
  background-color: lightgrey;
  border-radius: 10px;
  cursor: pointer;
}
.chat__username {
  font-size: 15px;
  font-weight: 600;
  margin: 0px;
  padding: 10px;
}
.no-margin-block {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.pricing-card-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid gray;
  width: 100px;
  height: 70px;
  background-color: white;
  color: blue;
  gap: 1rem;
}
.pricing-card-box-selected {
  border: 1px solid blue;
}
.pricing-card-spread-box {
  position: absolute;
  left: 50%;
  padding: 0.4rem;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  top: 10%;
  background-color: white;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-card-spread-box > * {
  margin: 0 0.5rem;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.dot {
  height: 15px;
  width: 15px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}
.aml-red-icon {
  color: #FF6D5C;
  background-color: #FF6D5C;
  height: 16px;
  width: 16px;
  border-radius: 20%;
  content: "";
  display: inline-block;
  margin-right: 10px;
  vertical-align: text-top;
}
.aml-green-icon {
  color: #00BF59;
  background-color: #00BF59;
  height: 16px;
  width: 16px;
  border-radius: 20%;
  content: "";
  display: inline-block;
  margin-right: 10px;
  vertical-align: text-top;
}
.aml-yellow-icon {
  color: #FF9900;
  background-color: #FF9900;
  height: 16px;
  width: 16px;
  border-radius: 20%;
  content: "";
  display: inline-block;
  margin-right: 10px;
  vertical-align: text-top;
}
.aml-grey-icon {
  color: #E0E0E0;
  background-color: #E0E0E0;
  height: 16px;
  width: 16px;
  border-radius: 20%;
  content: "";
  display: inline-block;
  margin-right: 10px;
  vertical-align: text-top;
}
.main-widget-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  min-width: 200px;
  height: 150px;
  padding-bottom: 30px;
  width: 200px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}
.main-widget-button {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px !important;
}
.main-widget-title {
  min-width: 200px;
  max-width: 200px;
}
body::-webkit-scrollbar-thumb {
  background: #1CA1A6;
  border-radius: 5px;
  border: 3px solid #fff;
}
body::-webkit-scrollbar {
  width: 13.5px;
  background: #fff;
}
.MuiTableContainer-root::-webkit-scrollbar-thumb {
  background: #c5c5c5;
  border-radius: 5px;
  border: 3px solid #fff;
}
.MuiTableContainer-root::-webkit-scrollbar {
  width: 13.5px;
  background: #fff;
}
[data-tooltip] {
  position: relative;
  cursor: help;
  text-decoration: underline;
}
[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  width: 150px;
  display: block;
  background: #FFF;
  padding: 10px;
  top: -40px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5490196078);
  border-radius: 3px;
  text-align: center;
  left: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-tooltip]:hover::before {
  transform: translate(0);
  opacity: 1;
}
[data-position=right]::before {
  top: -50%;
  left: 105%;
  transform: translateX(-20px);
}
[data-position=bottom]::before {
  top: 150%;
  transform: translateY(-20px);
}
[data-position=left]::before {
  top: -50%;
  right: 105%;
  left: auto;
  transform: translateX(20px);
}
.theme-icon {
  font-size: 16px !important;
  color: #000 !important;
  margin-right: 20px !important;
  padding-top: 4px;
}
.icon-error {
  color: #ff0000;
}
.icon-success {
  color: #00ff00;
}
.icon-pending {
  color: #5E438E;
}
.global-tag {
  font-size: 10px;
  font-weight: 600;
  color: #0A0D23;
  border: 2px solid #0A0D23;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 2px;
  padding-bottom: 2px;
}
.global-tag:hover {
  background-color: #0A0D23;
  color: #fff;
}
.selected-row {
  background-color: #F5F5F5;
}
.asset-icon {
  vertical-align: top;
  border: 1px solid #bfbfbf;
  border-radius: 50%;
  padding: 2px;
}
.tag-custom {
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  color: #0A0D23;
  border: 2px solid #0A0D23;
  border-radius: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 2px;
  padding-right: 2px;
  margin-bottom: 5px;
}
.tag-text {
  font-size: 10.5px !important;
  font-weight: 600 !important;
}
.bold-text {
  font-weight: bold !important;
}
.no-bold-text {
  font-weight: normal;
}
.main-container-tab {
  margin-top: 20px;
}
.main-container-tab .main-tab {
  border: 1px solid #A8A8A8;
  padding: 20px;
  height: 100%;
}
.main-container-tab .option {
  padding: 10px;
  cursor: pointer;
  margin-right: 10px;
  border-top: 1px solid #A8A8A8;
  border-left: 1px solid #A8A8A8;
  border-right: 1px solid #A8A8A8;
  border-bottom: 1px solid #fff !important;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s;
}
.main-container-tab .option:hover {
  background-color: #A8A8A8;
  color: #000;
}
.gbp-value-tag {
  font-size: 10px;
  margin-top: 4px;
  color: #444;
  width: -webkit-max-content;
  width: max-content;
  padding-top: 2px;
  padding-bottom: 1px;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 10px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
}
.underline {
  text-decoration: underline;
}
.underline-on-hover {
  cursor: pointer;
}
.underline-on-hover:hover {
  text-decoration: underline;
}
.user-welcome {
  font-size: 15px !important;
  color: #484848 !important;
  padding: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  margin-bottom: 1px;
  text-align: center !important;
  border-bottom: 4px solid #1CA1A6 !important;
  border-radius: 0 0 10px 10px !important;
  font-weight: bold !important;
  position: fixed;
  top: 0;
  right: 0;
  margin-top: 75px;
  margin-right: 20px;
  background-color: #F6F8FB !important;
  z-index: 1000;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.table-cell-ledger-vertical {
  padding: 5px !important;
  background-color: #1CA1A6 !important;
  text-transform: capitalize !important;
  font-weight: 700 !important;
  font-size: 12.5px !important;
  padding-left: 10px !important;
  padding-right: 50px !important;
  color: white !important;
  width: 10% !important;
}
.button-tab {
  margin: 4px !important;
  color: #fff !important;
  background-color: #1CA1A6 !important;
  border: 2px solid #1CA1A6 !important;
}
.button-tab-active {
  margin: 4px !important;
  background-color: #1CA1A6 !important;
  color: #fff !important;
  border: 2px solid #000 !important;
}