* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #f8f9fa;
  font-family: "Inter", sans-serif !important;
}

/* dashboard main style */
.dashboardTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.dashboard-heading {
  font-size: 18px;
  font-weight: 800;
  color: #000;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dashboardTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  /* Allow wrapping for smaller screens */
}

.dashboard-heading {
  font-size: 18px;
  font-weight: 800;
  color: #000;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-bar {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  padding: 5px 10px;
  border-radius: 5px;
}

.search-bar input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 200px;
}

.notification-icon,
.user-icon {
  font-size: 20px;
}

/* Tablet View (768px - 991px) */
@media (max-width: 991px) {
  .dashboardTop {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-right {
    margin-top: 15px;
    gap: 15px;
  }

  .search-bar input {
    width: 100%;
  }
}

/* Mobile View (Up to 767px) */
@media (max-width: 767px) {
  .dashboardTop {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-heading {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .top-right {
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .search-bar {
    width: 100%;
  }

  .search-bar input {
    width: 100%;
  }

  .notification-icon,
  .user-icon {
    font-size: 18px;
  }
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}

.search-bar .search-icon {
  padding: 6px;
  font-size: 14px;
  color: #747a80;
}

.search-bar input {
  border: none;
  padding: 6px 8px;
  outline: none;
  font-size: 14px;
}

/* Notification and User Icon */
.notification-icon {
  font-size: 20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-icon {
  cursor: pointer;
}

/* DashboardMainbalance Section */
.dashboardMainbalance {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.balance-section {
  display: flex;
  flex-direction: column;
}

.main-balance {
  font-size: 42px;
  font-weight: 800;
}

.balance-text {
  font-size: 14px;
  color: #7d7d7d;
  margin-top: 8px;
}

.currency-link {
  color: #0066ff;
  text-decoration: none;
  font-weight: bold;
}

.currency-link:hover {
  text-decoration: underline;
}

.open-account {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .dashboardMainbalance {
    flex-direction: column;
  }
}

/* Income and Spending Section */
.income-spending-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 800px;
  margin: 20px 0;
}

.income-spending-container .card {
  display: flex;
  justify-content: space-between;
  flex: 1;
  background-color: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e6e6e6;
}

.income-spending-container .card-title {
  font-size: 14px;
  font-weight: 500;
  color: #777;
}

.income-spending-container .card-value {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.income-spending-container .card-details {
  font-size: 12px;
  color: #555;
}

.income-spending-container .card-icon {
  font-size: 20px;
}

.card-percentage {
  font-size: 12px;
  font-weight: 600;
}

.positive {
  color: #27ae60;
  /* Green for positive */
}

.negative {
  color: #eb5757;
  /* Red for negative */
}

/* Assets Section */
.assets-section {
  background-color: #fff;
  border-radius: 12px;
  margin: 20px 0;
  max-width: 800px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.assets-header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.graph-placeholder img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.accounts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 8px;
}

.account-icon {
  font-size: 18px;
  margin-right: 8px;
}

.account-info {
  flex: 1;
}

.account-number {
  font-size: 14px;
  font-weight: 600;
}

.account-text {
  font-size: 12px;
  color: #777;
}

.account-balance {
  font-size: 14px;
  font-weight: 600;
  text-align: end;
}

.latesTransactionWrapper {
  margin: 20px 0;
  border-radius: 12px;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  color: #000;
  font-size: 13px;
  background-color: #f4f4f400;
  border-top: 1px solid #ddd;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  gap: 20px;
}

.footer-left a {
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-left a:hover {
  color: #007bff;
}

.footer-center {
  color: #747a80;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  flex: 1;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Tablet View (768px - 991px) */
@media (max-width: 991px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
  }

  .footer-left,
  .footer-right {
    justify-content: center;
    margin: 10px 0;
  }

  .footer-center {
    order: 2;
    margin: 15px 0;
    font-size: 14px;
  }

  .footer-right {
    gap: 20px;
  }
}

/* Mobile View (Up to 767px) */
@media (max-width: 767px) {
  footer {
    flex-direction: column;
    padding: 30px 15px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
  }

  .footer-right {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .footer-center {
    margin: 20px 0;
    font-size: 14px;
  }

  .footer-right .language-selector span,
  .footer-right .theme-toggle img {
    width: 22px;
    height: 22px;
  }
}

/* footer */

/* sameheight */
.sameheight {
  display: flex;
  flex-direction: column;
}

/* .............................. */
/* started 2nd dashboard */
/* .............................. */
.incomeAndExpenses {
  border-radius: 15px;
  /* Adds rounded corners */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  /* Creates a smooth shadow */
  padding: 30px;
  /* Adds padding inside the div */
  background-color: white;
  /* Ensures proper contrast with the shadow */
  margin: 20px 0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.header h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  color: black;
}

.header .icon {
  font-size: 20px;
}

.chart-container img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.details {
  margin-top: 20px;
}

.detail-item {
  margin-bottom: 15px;
}

.title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: black;
}

.amount-row {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.dot.blue {
  background-color: blue;
}

.dot.green {
  background-color: green;
}

.amount {
  font-size: 20px;
  font-weight: 800;
  color: #000;
}

.percentage {
  font-size: 12px;
  color: #000;
  font-weight: bold;
  margin-left: auto;
}

.button-container {
  margin-top: 20px;
}

.detailed-report {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid #747a80;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  width: 100%;
}

.detailed-report .icon {
  margin-left: 10px;
  font-size: 16px;
}

.titleLevel {
  color: #747a80;
  font-size: 14px;
  font-weight: 400;
}

.yourwallet {
  border-radius: 15px;
  /* Adds rounded corners */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  /* Creates a smooth shadow */
  padding: 30px;
  /* Adds padding inside the div */
  background-color: white;
  /* Ensures proper contrast with the shadow */
  margin: 20px 0;
}

.wallet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.card-slider {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.slider-btn {
  background-color: #f0f0f0;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.cards-container {
  display: flex;
  overflow: hidden;
  flex-grow: 1;
  margin: 0 10px;
  width: 150px;
}

.yourwallet .card {
  min-width: 100%;
  border-radius: 8px;
  margin-right: 10px;
  background-size: cover;
  background-position: center;
  border: none;
}

.options {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 20px;
}

.option {
  text-align: center;
}

.option-icon {
  width: 50px;
  height: 50px;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.option-text {
  font-size: 14px;
  color: #555;
}

.latest-transactions {
  max-height: 200px;
  overflow-y: auto;
}

.transaction {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.user-icon {
  font-size: 24px;
  margin-right: 10px;
}

.transaction-details {
  flex-grow: 1;
}

.transaction-type {
  font-weight: bold;
}

.transaction-date {
  font-size: 12px;
  color: #888;
}

.transaction-amount {
  font-weight: bold;
  color: #333;
}

.latest-transactions::-webkit-scrollbar {
  display: none;
}

.incomeAndExpenses {
  padding-right: 15px;
}

.yourwallet {
  padding-left: 15px;
}

.incomeAndExpenses,
.yourwallet {
  flex: 1;
}

.latesttrxn {
  color: #747a80;
  font-size: 14px;
  font-weight: 400;
}

/* ........................... */
/* accounts */
/* ........................... */
.openAbankAccount {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.openaccountbutton {
  border: none;
  color: #0066ff;
  display: flex;
  align-items: center;
  background-color: transparent;
}

/* ............................ */
/* transactions */
/* ....................................... */
.accountBalance {
  display: flex;
  align-items: center;
  padding: 10px;
}

.accountBalance .flag img {
  margin-right: 20px;
}

.accountBalance .account-details {
  display: flex;
  flex-direction: column;
}

.accountBalance .account-details span {
  font-size: 14px;
  color: #666;
}

.accountBalance .account-details h2 {
  font-size: 24px;
  margin: 0;
  color: #333;
  font-weight: 800;
}



/* Base styles for desktop */
.quickActions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #f5f7f9;
  border-radius: 8px;
  width: 100%;
  margin: 0 auto;
  gap: 20px;
}

.quickActions div {
  cursor: pointer;
  font-size: 14px;
  color: #000;
}

.quickActions i {
  margin-right: 5px;
}

/* Responsive styles for tablets */
@media (max-width: 768px) {
  .quickActions {
    flex-direction: column;
    gap: 10px;
  }

  .left-actions,
  .right-actions {
    width: 100%;
    justify-content: center;
  }

  .quickActions div {
    font-size: 16px;
  }

  .quickActions i {
    margin-right: 10px;
  }
}

/* Responsive styles for mobile devices */
@media (max-width: 480px) {
  .quickActions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 5px;
  }

  .left-actions,
  .right-actions {
    width: 100%;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
  }

  .quickActions div {
    font-size: 10px;
    text-align: center;
    padding: 5px;
    background-color: #e2e2e2;
    border-radius: 8px;
    font-weight: bold;
  }

  .quickActions i {
    margin-right: 5px;
  }
}






/* ................................ */
/* payment */
/* ................................. */
.payment {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-control,
.form-select {
  height: 50px;
  font-size: 16px;
}

.pay-button {
  height: 50px;
  font-size: 18px;
}

.text-muted {
  font-size: 13px;
}

.fee-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fee-line {
  height: 1px;
  background-color: #ddd;
  flex-grow: 1;
  margin: 0 10px;
}

/* ................................ */
/* payment2 */
/* ................................. */
/* Base styles for desktop */
.paymentOption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #f5f7f9;
  border-radius: 8px;
  width: 100%;
  margin: 0 auto;
  gap: 20px;
}

/* Left Part Styling */
.leftOptions {
  display: flex;
  background-color: #dadada;
  padding: 5px;
  border-radius: 8px;
}

.paymentButton {
  background-color: transparent;
  border: none;
  border-radius: 0;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  font-weight: bold;
  padding: 5px 15px;
}

.paymentButton:hover {
  background-color: #eaeaea;
}

.paymentButton.active {
  background-color: black;
  color: white;
  font-weight: bold;
  border-radius: 8px;
}

/* Right Part Styling */
.rightOptions {
  display: flex;
  gap: 15px;
  font-size: 14px;
  align-items: center;
}

.optionWithIcon {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 14px;
  color: black;
}

.optionWithIcon i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: black;
  mask: url("your-icon-url.svg") no-repeat center / contain;
  -webkit-mask: url("your-icon-url.svg") no-repeat center / contain;
}

/* Responsive styles for tablets */
@media (max-width: 768px) {
  .paymentOption {
    flex-direction: column;
    gap: 10px;
  }

  .leftOptions,
  .rightOptions {
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
  }

  .paymentButton {
    font-size: 14px;
    padding: 10px 20px;
  }

  .optionWithIcon {
    font-size: 16px;
  }
}

/* Responsive styles for mobile devices */
@media (max-width: 480px) {
  .paymentOption {
    flex-direction: column;
    gap: 5px;
  }

  .leftOptions,
  .rightOptions {
    width: 100%;
    justify-content: center;
  }

  .paymentButton {
    font-size: 12px;
    padding: 8px 15px;
  }

  .optionWithIcon {
    font-size: 14px;
  }
}






.exchange-amount {
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.exchange-header {
  margin-bottom: 100px;
}

.exchange-header h1 {
  font-size: 2.5em;
  font-weight: bold;
  color: #000;
  margin: 0;
}

.exchange-header p {
  font-size: 1.2em;
  color: #666;
  margin: 5px 0;
}

.exchange-rate {
  font-size: 0.9em;
  color: green;
}

.rate-icon {
  font-size: 0.8em;
  color: green;
}

.exchange-accounts {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0;
}

.account {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f9f9;
  padding: 20px 15px;
  border-radius: 8px;
}

.account-icon {
  font-size: 12px;
  color: #747a80;
  flex-basis: 20%;
  /* Ensure consistent width for the "From" and "Send to" labels */
  text-align: left;
  /* Align labels to the left */
}

.account-info {
  display: flex;
  align-items: center;
  flex-basis: 60%;
  /* Ensure equal space for account information */
  gap: 5px;
  /* Add spacing between the icon and text */
}

.account-info img {
  display: block;
  /* Ensure the images align properly */
}

.account-info p {
  margin: 0;
  font-size: 0.9em;
  color: #888;
}

.account-info h3 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #000;
}

.amount {
  flex-basis: 20%;
  /* Ensure consistent width for the amount section */
  font-size: 14px;
  font-weight: bold;
  color: #000;
  text-align: right;
  /* Align the amounts to the right */
}

.currency-select {
  background: transparent;
  /* Match the background with the current design */
  border: none;
  /* Remove the default select border */
  font-size: 14px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  padding: 2px 5px;
  appearance: none;
  /* Remove default browser styling */
}

.currency-select:focus {
  outline: none;
  /* Remove focus outline */
}

.select-icon {
  font-size: 12px;
  color: #747a80;
  /* Match the design aesthetic */
}

.exchange-button {
  width: 100%;
  background: #0052ff;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.exchange-button:hover {
  background: #0056b3;
}

/* Container Styling */
.usdtoEurChart {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

/* Title */
.chart-title h2 {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-bottom: 15px;
}

/* Time Intervals */
.chart-intervals {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.chart-btn {
  background: #f1f1f1;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  color: #747a80;
  cursor: pointer;
  transition: background 0.3s ease;
}

.chart-btn.active {
  background: #000;
  color: #fff;
}

.chart-btn:hover {
  background: #ddd;
}

/* Date and Conversion Info */
.chart-info {
  text-align: center;
  margin-bottom: 20px;
}

.chart-info p {
  font-size: 12px;
  color: #888;
}

.chart-info h3 {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.chart-info .rate-icon {
  color: #4caf50;
  font-size: 12px;
  margin-left: 5px;
}

/* Chart Canvas */

/* Time Labels */
.chart-times {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #888;
}

.exchangeWrapper {
  display: flex;
  gap: 20px;
}

.exchange-amount {
  flex: 1;
}

.usdtoEurChart {
  flex: 1;
}






/* .......................... */
/* invoice */
/* ............................ */
/* Base styles for desktop */
.invoicePopUpWrapper {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000bb;
}

.popup {
  width: 800px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  position: relative;
}

.popup-left {
  width: 40%;
  padding: 30px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #cfdbd5;
}

.popup-right {
  width: 60%;
  padding: 30px;
  background-color: #e2f1ea;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.popup-header {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  border-bottom: 1px solid #c2c2c2;
  padding-bottom: 10px;
}

.invoiceSendTo {
  font-size: 14px;
  font-weight: 400;
  color: #747a80;
}

.appleInc {
  font-size: 20px;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
}

.invAdd {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.company-info {
  margin-bottom: 30px;
}

.company-info p {
  margin: 5px 0;
  color: #333;
}

.invoice-details p {
  margin: 8px 0;
  color: #555;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}

.table th {
  font-weight: 600;
  color: #333;
}

.table td {
  color: #555;
}

.total-section {
  margin-top: 20px;
  text-align: right;
}

.total-section p {
  margin: 5px 0;
}

.total-amount {
  font-size: 22px;
  font-weight: 600;
}

.status {
  display: inline-block;
  padding: 10px 20px;
  background-color: #bdecbd;
  color: #1a881a;
  border-radius: 10px;
  margin-top: 20px;
}

.print-btn {
  margin-top: 30px;
  text-decoration: none;
  color: #333;
  background-color: #ffffff;
  padding: 10px 20px;
}

/* Responsive styles for tablets */
@media (max-width: 768px) {

  .popup-left {
    border-top-left-radius:0px;
    border-bottom-left-radius:0px;
}
.popup-right {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
  .popup {
    flex-direction: column;
    width: 90%;
  }

  .popup-left,
  .popup-right {
    width: 100%;
    padding: 20px;
  }

  .popup-header {
    font-size: 14px;
  }

  .appleInc {
    font-size: 18px;
  }

  .table th,
  .table td {
    padding: 10px;
  }

  .total-amount {
    font-size: 20px;
  }
}

/* Responsive styles for mobile devices */
@media (max-width: 480px) {
  .popup {
    width: 100%;
  }

  .popup-left,
  .popup-right {
    padding: 15px;
  }

  .popup-header {
    font-size: 12px;
  }

  .appleInc {
    font-size: 16px;
  }

  .table th,
  .table td {
    padding: 8px;
  }

  .total-amount {
    font-size: 18px;
  }
}






/* ............................. */
/* reports */
/* .............................. */
.watchlist-container {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
}

.watchlist-header {
  font-weight: bold;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.watchlist-item {
  border-left: 1px solid #e0e0e0;
  padding: 15px;
  text-align: center;
}

.watchlist-item:first-child {
  border-left: none;
}

.watchlist-item strong {
  font-size: 24px;
  font-weight: 900;
}

.watchlist-item .index {
  font-size: 14px;
  color: #747a80;
}

.watchlist-item .icon {
  font-size: 12px;
}

.watchlist-item .percentage {
  font-size: 14px;
  color: #5cb85c;
  text-align: left;
}

.watchlist-item .negative {
  color: #d9534f;
}

.chart {
  margin: 8px 0;
  display: flex;
  justify-content: space-between;
}

.currencySpan {
  font-size: 14px;
  font-weight: bold;
}

.breakdown {
  padding: 20px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
}

.breakdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.breakdown-header h3 {
  margin: 0;
  font-weight: bold;
}

.calendar-icon {
  font-size: 20px;
  cursor: pointer;
}

.breakdown-chart {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
}

.breakdown {
  padding: 20px;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  font-family: Arial, sans-serif;
}

.breakdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.breakdown-header h3 {
  margin: 0;
  font-weight: bold;
}

.calendar-icon {
  font-size: 20px;
  cursor: pointer;
}

.breakdown-chart {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 310px;
}

.circle-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
}

.outer-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #0052ff;
}

.middle-circle {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 10px solid #fff;
  box-shadow: inset 0 0 0 4px #23e33e;
}

.inner-circle {
  position: absolute;
  top: 45px;
  left: 45px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 10px solid #fff;
  box-shadow: inset 0 0 0 4px #ffbd00;
}

.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.breakandCategory .amount {
  font-size: 23px;
  font-weight: bold;
}

.subtext {
  color: #a0a0a0;
}

.breakdown-legend {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.legend-item {
  margin: 0 10px;
  display: flex;
  align-items: center;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 5px;
}

.color-stocks {
  background-color: #0000ff;
}

.color-cash {
  background-color: #32cd32;
}

.color-crypto {
  background-color: #ffd700;
}

.breakandCategory {
  padding: 16px;
}

.categories-container {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
}

.categories-container .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.categories-container .header h2 {
  font-size: 20px;
  font-weight: 600;
}

.categories-container .category-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Arial", sans-serif;
  margin-top: 20px;
}

.categories-container .icon img {
  width: 40px;
  height: 40px;
}

.categories-container .category-details {
  flex-grow: 1;
}

.categories-container .title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.categories-container .label {
  font-weight: bold;
  font-size: 16px;
}

.categories-container .percentage {
  font-size: 14px;
  color: #999;
}

.categories-container .amount {
  font-weight: bold;
  font-size: 15px;
}

.categories-container .progress-bar {
  height: 6px;
  background-color: #eee;
  border-radius: 5px;
  overflow: hidden;
}

.categories-container .progress {
  height: 100%;
  border-radius: 5px;
}

.categories-container .blue-bar .progress {
  background-color: #0052ff;
}

.categories-container .green-bar .progress {
  background-color: #23e33e;
}

.categories-container .yellow-bar .progress {
  background-color: #ffbd00;
}

.categories-container .pink-bar .progress {
  background-color: #ff2a7f;
}

.categories-container .light-pink-bar .progress {
  background-color: #ff9ad5;
}

.breakdown,
.categories-container {
  flex: 1;
}

.breakandCategorywrapper {
  gap: 20px;
}

/* .......................................... */
/* profile settings */
/* ............................................ */

tabs {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.tab {
  border: none;
  background-color: transparent;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 20px;
  color: black;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tab.active {
  background-color: black;
  color: white;
}

.tab:hover {
  background-color: #e0e0e0;
}

.tab:focus {
  outline: none;
}

.tab-content {}

.content {
  display: none;
  font-size: 18px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content.active {
  display: block;
}

/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.profileContent .container {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.profileContent h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
}

.profileContent .account-section,
.contact-section {
  margin-bottom: 30px;
}

.profileContent .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.profileContent label {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.profileContent input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  background-color: #f1f5f5;
  color: #666;
}

.profileContent input:focus {
  outline: none;
}

.profileContent .button-group {
  display: flex;
  justify-content: space-between;
}

.profileContent button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.profileContent button.primary {
  background-color: #007bff;
  color: #fff;
}

.profileContent button.primary:hover {
  background-color: #0056b3;
}

.profileContent button.secondary {
  background-color: #e0e7ff;
  color: #007bff;
}

.profileContent button.secondary:hover {
  background-color: #c3d4ff;
}

.profiledivwrapper {
  background-color: #f1f5f5;
  padding: 20px;
}

.ccredential-left {
  display: flex;
  align-items: center;
}

.ccredential-left img {
  width: 46px;
  height: 46px;
  margin-right: 15px;
}

.credentialinfopara {
  color: #747a80;
  font-size: 12px;
  font-weight: 500;
}

.credentialinfoheading {
  font-size: 14px;
  font-weight: bold;
}

.ccredential-right button {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
}

/* Switch Button Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 25px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: #007bff;
  /* Blue color for "on" state */
}

input:checked+.slider:before {
  transform: translateX(24px);
}

.peamentTab .section-title {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.peamentTab .limit-title {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  color: #000;
}

.peamentTab .limit-info {
  font-size: 12px;
  color: #6c757d;
  margin: 5px 0 0;
}

.peamentTab .limit-info .spent {
  color: #000;
  font-weight: bold;
}

.peamentTab .limit-info .total {
  color: #007bff;
  font-weight: bold;
}

/* Slider Styling */
.peamentTab .slider-container {
  position: relative;
  width: 100%;
}

.peamentTab .progress-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background-color: #e6eaf0;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
}

.peamentTab .progress-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background-color: #007bff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.peamentTab .progress-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background-color: #007bff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Section Background */
.peamentTab .payment-limits-section,
.transaction-limits-section {
  background-color: #eef2f5;
  padding: 20px;
  border-radius: 10px;
}

.peamentTab .row {
  margin-bottom: 15px;
}

/* .................... */
/* help center */
/* ................. */
.help-section {
  background: linear-gradient(90deg, #2684ff, #764ba2);
  color: #fff;
  padding: 70px 0;
  border-radius: 20px;
  text-align: center;
}

.help-section h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.help-section .search-box {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
}

.help-section .search-box input[type="text"] {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
}

.help-section .search-box input::placeholder {
  color: #999;
}

.help-section .search-box .icon {
  font-size: 1.2rem;
  color: #999;
  margin-right: 10px;
}

/* Parent class for the products section */
.products-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.products-section h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
}

.products-section .product-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.products-section .product-item:hover {
  transform: translateY(-5px);
}

.products-section .product-icon {
  font-size: 1.5rem;
  color: #333;
}

.products-section .product-content {
  flex: 1;
}

.products-section .product-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.products-section .product-description {
  font-size: 0.9rem;
  color: #666;
}

/* Parent class for the popular help articles section */
.help-articles-section {
  padding: 50px 20px;
}

.help-articles-section h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
}

.help-articles-section .article-item {
  padding: 15px;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  transition: box-shadow 0.2s;
}

.help-articles-section .article-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.help-articles-section .article-category {
  font-size: 0.9rem;
  color: #007bff;
  font-weight: bold;
  margin-bottom: 10px;
}

.help-articles-section .article-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.help-articles-section .article-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}

.help-articles-section .read-more {
  font-size: 0.9rem;
  color: #007bff;
  font-weight: bold;
}

.help-articles-section .read-more:hover {
  text-decoration: underline;
}

.community-articles {
  padding: 50px 20px;
}

.community-articles h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.community-articles .card {
  border: none;
  background: transparent;
}

.community-articles .card .icon-wrapper {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.community-articles .card-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.community-articles li {
  margin-bottom: 12px;
}

.community-articles a {
  color: #007bff;
  text-decoration: none;
}

.community-articles a:hover {
  text-decoration: underline;
}

.community-posts {
  font-family: Arial, sans-serif;
  color: #333;
  padding: 50px 20px;
}

.community-posts h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.post-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.post-item:last-child {
  border-bottom: none;
}

.post-icon {
  font-size: 1.5rem;
  color: #555;
}

.post-content {
  flex: 1;
}

.post-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 5px;
  color: #000;
  text-decoration: none;
}

.post-title:hover {
  text-decoration: underline;
  color: #007bff;
}

.post-meta {
  font-size: 0.875rem;
  color: #777;
}

.help-sectionBottom {
  font-family: Arial, sans-serif;
  background-color: #e8f0fe;
  color: #333;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  background-image: url("./images/helpCenter/not\ fingingBg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 30px;
}

.help-sectionBottom .help-text {
  max-width: 50%;
}

.help-sectionBottom .help-text h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.help-sectionBottom .help-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.help-sectionBottom .help-btn {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  text-decoration: none;
}

.help-sectionBottom .help-btn:hover {
  background-color: #0056b3;
}

.community-articles .text-black {
  font-weight: bold;
  font-size: 14px;
}

.help-articles-section2 .article-title {
  font-size: 18px;
  font-weight: 800;
}

.help-articles-section2 .article-description {
  font-size: 14px;
  font-weight: 400;
  color: #747a80;
}

/* Parenting class to avoid conflicts */
.funds-reports {
  font-family: Arial, sans-serif;
  color: #333;
}

.funds-reports .page-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.funds-reports .breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.funds-reports .content-section {
  margin-bottom: 30px;
}

.funds-reports .content-section p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.funds-reports .highlight-box {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.funds-reports .highlight-box ol {
  padding-left: 20px;
  margin: 0;
}

.funds-reports .highlight-box li {
  margin-bottom: 10px;
}

.funds-reports .note {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 15px;
}



.funds-reports .sidebarHelp {
  border-left: 1px solid #dee2e6;
  padding-left: 20px;
}

.funds-reports .sidebarHelp a {
  color: #007bff;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 0.875rem;
}

.funds-reports .sidebarHelp a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .help-section {
    padding: 30px 0;
  }

  .help-section .search-box {
    max-width: 330px;
  }

  .help-section h1 {
    font-size: 28px;
  }

  .community-articles .card {
    padding: 15px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .help-sectionBottom {
    padding: 15px 30px;
  }
}