* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  padding: 20px;
  height: 100%;
  background-color: #1a1e24;
  color: #e3e6ea;
  max-width: 1200px;
  font-style: normal;
  width: 100%;
}

/* Headings - More distinctive and modern */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ff9800;
  text-align: center;
  font-weight: 600;
  margin: 20px 0;
  font-style: normal;
}

h1 {
  font-size: 2.5rem;
  margin: 30px 0;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

@media (max-width: 768px) {

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 90%;
    text-align: left;
  }
}

/* Links - Improved interactivity */
a {
  color: #ff9800;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link_groups {
  display: flex;
  gap: 5px;
}

.theme-link-active {
  color: #ff9800 !important;
  /* Adjust hover color as needed */
  background-color: rgba(255, 152, 0, 0.2) !important;
  border-radius: 4px;
}

a:hover,
a:focus {
  color: #ffffff;
  text-decoration: underline;
}

p a,
li a {
  font-weight: 500;
}

/* Input Fields - Enhanced for usability */
input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #555;
  background-color: #333;
  color: #fff;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  border-color: #ff9800;
}

textarea.large-input {
  height: 150px;
  font-family: "Roboto", sans-serif;
}

/* Buttons */
button {
  background-color: #22252c;
  color: white;
  border: 1px solid #555;
  padding: 12px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease-in, color 0.3s ease-in;
  border-radius: 0.5rem;
  font-size: 1rem;
}

button:hover {
  background-color: #484c57;
}

/* Utility Classes */
.d-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.input-date {
  width: 147px !important;
}

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

.ml-20 {
  margin-left: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-50 {
  margin-top: 50px !important;
}

/* Navigation Style */
nav.top-right-links {
  display: flex;
  align-items: center;
  background-color: #1a1e24 !important;
  /* Ensure the correct background color */
}

nav.top-right-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

nav.top-right-links ul li {
  margin: 0 10px;
}

nav.top-right-links a {
  display: block;
  padding: 10px 15px;
  color: #fff !important;
  /* Adjust to match your desired link color */
  text-transform: uppercase;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

nav.top-right-links a:hover,
nav.top-right-links a:focus {
  color: #ff9800 !important;
  /* Adjust hover color as needed */
  background-color: rgba(255, 152, 0, 0.2);
  border-radius: 4px;
}

@media (max-width: 768px) {
  nav.top-right-links ul {
    flex-direction: column;
    justify-content: center;
  }
}

/* Connect Wallet Section */
.connect_wallet_section {
  display: flex !important;
  justify-content: right;
  margin-left: 25px;
}

.connect_wallet_section button {
  background-color: #a7282c !important;
  /* Adjust as needed */
  color: white;
  border: 1px solid #555;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 0.5rem;
}

.connect_wallet_section button:hover {
  background-color: #ff9800;
}

.connect_wallet {
  padding: 10px 20px;
  margin: 0 5px;
  font-size: 1rem;
  background-color: #262626;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.connect_wallet>a {
  color: white !important;
}

.connect_wallet:hover {
  color: white !important;
}

/* Table Enhancements */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th,
td {
  border: 1px solid #444;
  text-align: center;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #22252c;
}

table thead th {
  background-color: #1a1e24;
  color: #ff9800;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1em;
  padding: 12px 8px;
  border-bottom: 2px solid #444;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.pagination button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #22252c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pagination button:hover {
  background-color: #484c57;
}

/* Select Dropdown */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #333;
  border: 2px solid #444;
  padding: 10px 15px;
  border-radius: 5px;
  color: #fff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="12" viewBox="0 0 14 12"><polygon fill="white" points="1,1 7,9 13,1"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
}

select:hover,
select:focus {
  border-color: #ff9800;
  outline: none;
}

/* Footer Styling */
.site-footer {
  text-align: center;
  width: 100%;
  padding: 20px 0;
  color: #fff;
  margin-top: 40px;
  font-size: 0.9rem;
}

.site-footer a {
  color: #ff9800;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Features Section */
.features-section,
.call-to-action {
  text-align: center;
  padding: 50px 20px;
}

.features-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.feature {
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: 30%;
}

.feature img {
  border-radius: 10%;
  width: 160px;
  height: auto;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
  }

  .feature {
    width: 100%;
    margin: 10px 0;
  }
}

.cta-button {
  display: inline-block;
  background-color: #28a745;
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
}

/* Forms */
.form-group {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.form-group input[type="text"],
.form-group input[type="password"] {
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 50%;
}

.custom-form-control {
  width: 250px !important;
  display: block;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  background-color: #1a1e24;
  background-clip: padding-box;
  border: 1px solid #ced4da !important;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Buttons */
.btn-modify {
  padding: 0.3rem;
  border: 1px solid #ffffff;
  border-radius: 0.3rem;
}

.btn-modify:hover {
  cursor: pointer;
}

.btn-dark-custom {
  background-color: #22252c;
  border-color: #555;
  transition: background-color 0.3s ease-in, color 0.3s ease-in;
  border-radius: 0.5rem;
}

.btn-dark-custom:hover {
  background-color: #484c57;
}

button {
  background-color: #22252c;
  color: white;
  border: 1px solid #555;
  padding: 12px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease-in, color 0.3s ease-in;
  border-radius: 0.5rem;
  font-size: 1rem;
}

button:hover {
  background-color: #484c57;
}

.success,
.btn-success {
  background-color: #1e7e34;
}

.error,
.btn-error {
  background-color: #a7282c;
  color: white;
}

.subscribe,
.btn-subscribe {
  background-color: #e68a00;
  color: white;
}

.pagination button,
.button-container button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #22252c;
  color: white;
  border-color: #555;
  border-radius: 5px;
  margin-left: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pagination button:hover,
.button-container button:hover {
  background-color: #484c57;
}

/* Modal */

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.modal-content {
  background-color: #252525;
  /* margin: auto; */
  padding: 20px;
  border: 1px solid #888;
  width: 350px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation-name: modalopen;
  animation-duration: 0.4s;
  border-radius: 15px;
  min-height: 450px;
  position: relative;
  /* transform: translate(0%, 50%); */
}

.update-modal-content {
  background-color: #252525;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 30%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation-name: modalopen;
  animation-duration: 0.4s;
  border-radius: 15px;
  min-height: 450px;
  position: relative;
}

.modal-header {
  text-align: center;
}

.modal-title {
  color: #ffffff;
  font-size: 32px;
  line-height: 44px;
  opacity: 0.9;
  font-weight: 700;
}

.modal-description {
  color: #b8b5b5;
  font-size: 14px;
  line-height: 18px;
  padding: 10px 50px;
  text-align: center;
}

.modal-footer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
}

.modal-success-img {
  width: 150px;
  height: auto;
  padding-top: 1.5rem;
  margin-top: 20px;
  margin-bottom: 20px;
}

.modal-success-text {
  text-align: center;
}

.verify_item {
  display: flex;
  align-items: center;
  width: 100%;
}

.verify_item>div {
  padding: 0px 0px 0px 10px;
}

.wallet_address {
  font-size: 12px;
  line-height: 16px;
  color: grey;
}

.modal-footer>button:hover {
  background-color: #1a1e24;
}

.modal-footer>button {
  border: 1px solid #ddd !important;
  background-color: #2f2f2f;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.wallet_item {
  width: 80%;
  display: flex;
  align-items: center;
  border: 1px solid #424242;
  border-radius: 3px;
  padding: 0.5rem 4rem;
  margin-top: 20px;
}

.wallet_item:hover {
  background-color: #2f2f2f;
  cursor: pointer;
}

.wallet_item>img {
  width: 30px;
}

.wallet_item>p {
  margin-left: 15px;
  font-size: 14px;
  line-height: 18px;
}

.connect_wallet_section {
  display: flex !important;
  justify-content: right;
  margin-left: 25px;
}

.connect_wallet_section>button:hover {
  background-color: #1a1e24;
}

.connect_wallet {
  padding: 10px 20px;
  margin: 0 5px;
  font-size: 1rem;
  background-color: #262626;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.connect_wallet>a {
  color: white !important;
}

.connect_wallet:hover {
  color: white !important;
}

input {
  transition: all 0.2s ease;
}

input.form-style {
  color: #8a8a8a;
  display: block;
  width: 100%;
  height: 44px;
  padding: 5px 5%;
  border-radius: 27px;
  background-clip: padding-box;
  font-family: "HelveticaNeue", "Arial", sans-serif;
  font-size: 105%;
  letter-spacing: 0.8px;
}

.form-item p.formLabel {
  position: absolute;
  left: 26px;
  top: 2px;
  transition: all 0.4s ease;
}

.formTop {
  top: -22px !important;
  left: 26px;
  padding: 0 5px;
  font-size: 14px;
}

.formStatus {
  color: #8a8a8a !important;
}

input[type="submit"].login {
  float: right;
  width: 112px;
  height: 37px;
  border-radius: 19px;
  background-clip: padding-box;
  background-color: #55b1df;
  border: 1px solid #55b1df;
  color: #fff;
  font-weight: bold;
}

input[type="submit"].login:hover {
  background-color: #fff;
  border: 1px solid #55b1df;
  color: #55b1df;
  cursor: pointer;
}

.wallet_address_tooltip {
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  top: 30px;
}

.wallet_item {
  width: 80%;
  display: flex;
  align-items: center;
  border: 1px solid #424242;
  border-radius: 3px;
  padding: 0.5rem 4rem;
  margin-top: 20px;
}

.wallet_item:hover {
  background-color: #2f2f2f;
  cursor: pointer;
}

.wallet_item>img {
  width: 30px;
}

.wallet_item>p {
  margin-left: 15px;
  font-size: 14px;
  line-height: 18px;
}

.token-logo {
  width: 50px;
  height: 50px;
  margin: 0 10px;
}

.rank {
  font-size: 24px;
  color: white;
  margin-right: 10px;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip_modal {
  display: none;
  position: absolute;
  padding: 10px;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  width: 400px;
  z-index: 999;
}

.tooltip-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px 0px 20px 0px;
  border-bottom: 1px solid #424242;
}

.tooltip-header button {
  padding: 8px 15px !important;
}

.tooltip-address {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.tooltip-avatar {
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, rgb(55, 120, 121), rgb(70, 102, 230));
  border-radius: 50%;
}

.tooltip-subscription {
  padding: 30px;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

@keyframes spin {
  from {
    transform: rotateZ(0deg);
  }

  to {
    transform: rotateZ(180deg);
  }
}

@keyframes slow-down {
  from {
    transform: rotateZ(0deg);
  }

  to {
    transform: rotateZ(180deg);
  }
}

.feature img {
  animation: spin 2s ease-out;
}

.feature img:hover {
  animation: spin 1s infinite linear;
}

.feature img.slowing-down {
  animation: slow-down 2s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  nav.top-right-links ul {
    text-align: center;
  }
}

.form-check {
  display: flex;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 10px;
}

.subtopic_panel {
  width: 30%;
  padding-top: 30px;
}

/* Summary Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #ffffff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 800px;
}

.modal-summary-content {
  color: #000000;
  line-height: 1.6;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.stats-display {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#loading_spinner {
  z-index: 999;
  width: 50px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#sub_loading_spinner {
  z-index: 999;
  width: 50px;
  height: 50px;
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#tradersTableBody .trader_name {
  width: 20%;
}

#tradersTableBody .last_trade_date {
  width: 20%;
}

#tradersTableBody .currency_name {
  width: 10%;
}

#tradersTableBody .action {
  width: 10%;
}

#tradersTableBody .usd_value {
  width: 12%;
}

#tradersTableBody .transaction-last-30-days-count {
  width: 8%;
}

#tradersTableBody .youtube_video {
  width: 20%;
}

#tradersTableBody td:first-child {
  white-space: normal !important;
}

#trader_table td {
  font-weight: 100 !important;
}

#trader_table div>span>a {
  font-weight: 100 !important;
}

.search_panel_row {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}

.source-token-logo-cell,
.action-cell,
.to-token-logo-cell {
  width: 20px;
}

.date-cell,
.trader-cell {
  width: 200px;
}

.amount-cell,
.usd-cell,
.comments-cell {
  width: 180px;
}

.bg-red {
  background-color: #b5494c !important;
}

.bg-green {
  background-color: #2ec181 !important;
}

.bg-blue {
  background-color: #1456d6 !important;
}

.hide {
  display: none;
}

.table-container th,
.table-container td {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.table-container th {
  background-color: #161616;
  color: #eee;
  transition: background-color ease-out 0.2s;
}

.table-container th:hover {
  background-color: #272727;
  color: #eee;
  cursor: pointer;
}

.table-container th.clicked {
  background-color: #555;
}

.hidden {
  display: none;
}

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

.header-logo {
  height: 50px;
  width: auto;
}

#openModalBtn {
  background-color: #a7282c;
  color: white;
  border: 1px solid #555;
}

#openModalBtn:hover {
  background-color: #ff9800;
}

#disconnect_wallet {
  background-color: green;
  color: white;
  border: 1px solid #555;
}

#disconnect_wallet:hover {
  background-color: darkgreen;
}

.top-right-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-right-links ul {
  list-style: none;
  display: flex;
  margin-right: 20px;
}

.top-right-links ul li {
  margin-right: 10px;
}

.connect-wallet-button {
  padding: 10px 20px;
  background-color: #a7282c;
  border: none;
  cursor: pointer;
}

.wallet_item {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center content horizontally within the item */
  border: 1px solid #424242;
  border-radius: 3px;
  padding: 0.5rem 4rem;
  margin: 20px auto;
  /* Center the item horizontally in its parent container */
}

.header-container {
  padding-left: 0;
}

.container {
  margin: auto;
  max-width: 1200px;
  padding: 20px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.form-control input {
  width: 50%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
  background-color: #333;
}

.form-control input[readonly] {
  color: grey;
  background-color: #333;
  cursor: not-allowed;
}

.form-control input[data-full-address] {
  --address-content: attr(data-display-address);
}

.form-control input[data-full-address]:hover {
  --address-content: attr(data-full-address);
}

.form-control input[data-full-address]::after {
  content: var(--address-content);
}

/* Sections */
.features-section,
.call-to-action {
  text-align: center;
  padding: 10px 5px;
}

.features-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.feature {
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: 30%;
}

.feature img {
  border-radius: 10%;
  width: 160px;
  height: auto;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
  }

  .feature {
    width: 100%;
    margin: 10px 0;
  }
}

.profile-info .youtube-profile {
  margin-bottom: 20px;
}

.profile-info .standard-display {
  margin-bottom: 10px;
}

.profile-info label {
  font-size: 1rem;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.recent-videos ul {
  list-style: none;
  padding-left: 0;
}

.recent-videos ul li a {
  color: #b98627;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-videos ul li a:hover {
  color: #ff9800;
}

.youtube-profile p {
  font-size: 0.9rem;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.stat-icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.video-title {
  display: block;
  margin-bottom: 2px;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-details {
  font-size: 0.7rem;
  color: #ffffff;
  line-height: 1.2;
}

.video-date,
.video-views {
  display: block;
}

.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #666;
}

#youTubeProfileLink,
#twitterProfileLink {
  text-decoration: none;
  color: #000;
  flex-grow: 1;
}

.profile-stats {
  margin-left: auto;
  color: #000;
}

.select_container {
  display: flex;
  justify-content: center;
}

.select_container>.form-group {
  flex-direction: row;
  margin-left: 50px;
}

.select_container>.form-group select {
  min-width: 150px;
}

#response_split {
  border-bottom: 1px dashed white;
  margin: 20px 0px;
}

.button_container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.action-icon-swap {
  width: 40px;
  height: 40px;
}

.action-icon,
.token-logo {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.action-icon-swap:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.action-icon:hover,
.token-logo:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Custom tooltip styling */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.search-box {
  display: flex;
  justify-content: center;
}

.search-box select {
  padding: 10px;
  margin: 10px;
  width: 170px;
}

.search-box input {
  padding: 10px;
  margin: 10px;
  width: 220px;
}

.search-box button {
  padding: 10px;
}

#search_select_type {
  width: 220px;
}

#search_select_usd {
  width: 220px;
}

.highlight {
  background-color: #1976d2 !important;
}

.search-button-container {
  display: flex;
  margin: 10px;
}

.stat-card {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 15px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Pricing Section */
.pricing-panel {
  display: flex;
}

.pricing-description {
  width: 40%;
  padding: 0px 30px 30px 40px;
}

.pricing-plan {
  width: 60%;
  display: flex;
  justify-content: center;
}

.pricing-describe {
  margin-top: 30px;
  font-size: 22px;
  color: #bababa;
}

.pricing-link {
  margin-top: 20px;
  font-size: 15px;
  color: #bababa;
}

.pricing-cost {
  font-size: 60px;
  font-weight: 700;
}

.pricing-cost span {
  font-size: 35px;
  margin-right: 10px;
}

.plan-name {
  font-size: 25px;
  margin: 10px 0px 30px 0px;
}

.pricing-item {
  flex: 1 1 calc(33.333% - 16px);
  height: 100%;
  border: 1px solid #424242;
  border-radius: 10px;
  max-width: 350px;
  padding: 20px 45px 20px 45px;
}

.plan-item {
  margin: 10px 0px;
}

.general-btn {
  background-color: #22252c !important;
  color: white !important;
  border: 1px solid #555 !important;
  padding: 12px 24px !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease-in, color 0.3s ease-in !important;
  border-radius: 0.5rem !important;
  font-size: 1rem !important;
}

.general-btn:hover {
  background-color: #484c57 !important;
  border: 1px solid #555 !important;
}

/* Subscribe Modal */
#subscribeModal .modal-header {
  height: 50px;
  border-bottom: 1px solid #bababa6b;
}

#subscribeModal .modal-body {
  display: flex;
  flex-direction: column;
}

#subscribeModal .modal-body>p {
  font-size: 17px;
  padding: 30px 0px;
}

#subscribeModal .modal-body>ul {
  padding: 0px 30px 30px 30px;
}

.modal-dialog {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-section {
  height: 50px;
  border-top: 1px solid #bababa6b;
}

.subscribe_description {
  margin-top: 40px;
}

.subscribe_description p {
  font-weight: 500;
  font-size: 20px;
}

.subscribe_description p>span {
  font-weight: 700;
}

.footer-section button {
  float: right;
  margin-top: 10px;
}

.darken-bg {
  background: rgba(0, 0, 0, 0.5) !important;
  transition: all 0.3s ease;
}

div.form-item {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

div.form-item:first-child {
  width: 48%;
  float: left;
}

div.form-item:nth-child(2) {
  width: 48%;
  float: right;
}

#formWrapper>.form-item {
  width: 100%;
}

input {
  transition: all 0.2s ease;
}

input.form-style {
  color: #8a8a8a;
  display: block;
  width: 100%;
  height: 44px;
  padding: 5px 5%;
  border-radius: 27px;
  background-clip: padding-box;
  font-family: "HelveticaNeue", "Arial", sans-serif;
  font-size: 105%;
  letter-spacing: 0.8px;
}

div.form-item .form-style:focus {
  outline: none;
  border: 1px solid #58bff6;
  color: #58bff6;
}

div.form-item p.formLabel {
  position: absolute;
  left: 26px;
  top: 2px;
  transition: all 0.4s ease;
}

.formTop {
  top: -22px !important;
  left: 26px;
  padding: 0 5px;
  font-size: 14px;
}

.formStatus {
  color: #8a8a8a !important;
}

input[type="submit"].login {
  float: right;
  width: 112px;
  height: 37px;
  border-radius: 19px;
  background-clip: padding-box;
  background-color: #55b1df;
  border: 1px solid #55b1df;
  color: #fff;
  font-weight: bold;
}

input[type="submit"].login:hover {
  background-color: #fff;
  border: 1px solid #55b1df;
  color: #55b1df;
  cursor: pointer;
}

.wallet_address_tooltip {
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  top: 30px;
}

.wallet_item {
  width: 60%;
  display: flex;
  align-items: center;
  border: 1px solid #424242;
  border-radius: 3px;
  padding: 0.5rem 4rem;
  margin-top: 20px;
}

.wallet_item:hover {
  background-color: #2f2f2f;
  cursor: pointer;
}

.wallet_item>img {
  width: 30px;
}

.wallet_item>p {
  margin-left: 15px;
  font-size: 14px;
  line-height: 18px;
}

.token-logo {
  width: 50px;
  height: 50px;
  margin: 0 10px;
}

.rank {
  font-size: 24px;
  color: white;
  margin-right: 10px;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  nav.top-right-links ul {
    text-align: center;
  }
}

/* Header Style */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background-color: #1a1e24 !important;
  /* Adjust this color to match your design */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-logo {
  height: 50px;
  width: auto;
}

.top-right-links ul {
  list-style: none;
  display: flex;
  margin-right: 20px;
}

.top-right-links ul li {
  margin-right: 10px;
}

.top-right-links a {
  color: #fff !important;
  /* Adjust to match your desired link color */
  text-decoration: none;
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.top-right-links a:hover,
.top-right-links a:focus {
  color: #ff9800 !important;
  /* Adjust hover color as needed */
  background-color: rgba(255, 152, 0, 0.2);
  border-radius: 4px;
}

/* Connect Wallet Button */
.connect-wallet-button {
  padding: 10px 20px;
  background-color: #a7282c;
  border: none;
  cursor: pointer;
  color: white;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.connect-wallet-button:hover {
  background-color: #ff9800;
}

/* CSS for the social icons */
.social-media-links {
  text-align: center;
  margin-top: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  width: 40px;
  /* Set a uniform width */
  height: 40px;
  /* Set a uniform height */
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Additional styles to fix the header issues */

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #1a1e24 !important;
  /* Adjust as needed to match original header color */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-logo {
  height: 50px;
  width: auto;
}

nav.top-right-links {
  display: flex;
  align-items: center;
  background-color: #1a1e24 !important;
  /* Ensure the correct background color */
}

nav.top-right-links ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav.top-right-links ul li {
  margin: 0 10px;
}

nav.top-right-links a {
  color: #fff !important;
  /* Adjust to match your desired link color */
  text-decoration: none;
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s ease, background-color 0.3s ease;
}

nav.top-right-links a:hover,
nav.top-right-links a:focus {
  color: #ff9800 !important;
  /* Adjust hover color as needed */
  background-color: rgba(255, 152, 0, 0.2);
  border-radius: 4px;
}

.connect_wallet_section button {
  background-color: #a7282c !important;
  /* Adjust as needed */
  color: white;
  border: 1px solid #555;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 0.5rem;
}

.connect_wallet_section button:hover {
  background-color: #ff9800;
}

@media (max-width: 768px) {
  nav.top-right-links ul {
    flex-direction: column;
    align-items: center;
  }

  nav.top-right-links a {
    padding: 10px;
  }
}

.dropdown-and-load {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin-bottom: 10px;
  background-color: #2c313c;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-and-load button {
  padding: 10px 24px !important;
}

#messageContainer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(19, 19, 19, 0.2);
  display: none;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateX(20px);
}

/* Minimal Web3 Style Enhancements */
/* Minimal Web3 Style Enhancements */

/* General Styling */
body {
  font-family: "Roboto", sans-serif;
  background-color: #121212;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Section Titles */
h2.section-title {
  color: #ff9800;
  text-align: center;
  font-size: 2rem;
  margin: 40px 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Stats Display Container */
.stats-display {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
  overflow: hidden;
}

/* Token Container */
.stats-display .token-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 10px;
  width: 80px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-display .token-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Token Image */
.stats-display .token-container img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

/* Ensure parent containers do not hide the tooltip */
.stats-display {
  overflow: visible;
  /* Ensure this is set to visible */
}

/* Token Logo */
.token-logo {
  width: 50px;
  height: 50px;
  margin: 0 10px;
}

/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1000;
  /* Ensure the tooltip is above other elements */
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Premium Subscription Section */
/* Premium Subscription Section */
.premium-subscription-section {
  background-color: #1a1e24;
  /* Match this color to the surrounding background if needed */
  color: #fff;
  padding: 10px 0px;
  text-align: center;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  /* Center the section */
  align-items: center;
  border-radius: 10px;
  /* Add a slight border radius if desired */
}

.premium-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #1a1e24;
  /* Consistent with the section background */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: left;
  /* Ensure text is left-aligned */
}

.premium-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ff9800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.premium-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #ddd;
}

.premium-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  color: #fff;
}

.premium-benefits li {
  font-size: 1.1em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.premium-benefits li i {
  margin-right: 10px;
  color: #ff9800;
}

.premium-button {
  background-color: #ff9800;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 1.2em;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  display: block;
  /* Ensures the button stays on a new line */
  margin: 0 auto;
  /* Center the button */
}

.premium-button:hover {
  background-color: #e68a00;
}

@media (max-width: 768px) {
  .premium-content h2 {
    font-size: 2em;
  }

  .premium-content p,
  .premium-benefits li {
    font-size: 1em;
  }
}

.section-subtitle {
  font-size: 1em;
  color: #ff9900;
  margin-bottom: 0px;
}

.main-heading-section {
  text-align: center;
  margin-bottom: 20px;
  /* Reduced gap */
}

.main-heading {
  font-size: 3em;
  color: #ff9900;
  margin: 0;
  font-style: normal;
  /* Ensure normal font style */
}

.features-section {
  margin-top: 0px;
  /* Reduced gap */
}

.section-subtitle {
  font-size: 1.5em;
  /* Smaller size */
  color: #ff9900;
  margin-bottom: 10px;
  /* Closer to token containers */
  text-align: center;
  font-style: normal;
  /* Ensure normal font style */
}

.stats-display {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  /* Adjust gap between tokens if necessary */
}

.token-logo {
  width: 50px;
  height: 50px;
}

.tooltip {
  position: relative;
  display: inline-block;
  font-style: normal;
  /* Ensure normal font style */
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1000;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
  font-style: normal;
  /* Ensure normal font style */
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

#connect_wallet,
#disconnect_wallet,
#tooltip-address {
  background-color: #a7282c;
  color: white;
  border: 1px solid #555;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 0.5rem;
}

#connect_wallet:hover,
#disconnect_wallet:hover,
#tooltip-address:hover {
  background-color: #ff9800;
}

.tooltip_modal {
  display: none;
  position: absolute;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  width: 400px;
  z-index: 999;
  padding: 10px;
}

/* Trades Tracker Page */
/* Trades Tracker Page */
.comments {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comments img {
  width: 20px;
}

.comments span {
  font-size: 17px !important;
  font-weight: 500 !important;
  padding: 5px;
}

.comments>div {
  width: 100%;
  justify-content: flex-start;
}

.comments .d-flex-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.read_panel {
  width: 50%;
}

.comments_panel {
  width: 50%;
}

.w-100 {
  width: 100%;
}

.amount-cell,
.usd-cell {
  text-align: right !important;
  padding-right: 1rem;
  overflow-wrap: anywhere;
  max-width: 200px;
  text-wrap: nowrap;
}

.usd-cell>.trans_usd_value {
  max-width: 200px;
  text-wrap: nowrap;
}

.comments-cell {
  padding: 0 2rem;
}

.token-logo {
  width: 40px;
  height: 40px;
  /* background-image: url("/static/img/default.webp"); */
  display: inline-block;
  font-size: 10px;
}

.delete-button-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-direction: row;
}

.action-button-container {
  display: flex;
  justify-content: space-around;
  border: none;
}

.action-button-container button {
  margin: 0 0.2rem;
}

.action-button-container span {
  padding: 3px 7px;
  border: 1px solid;
  border-radius: 5px;
}

.action-button-container span:hover {
  cursor: pointer;
}

#modifyTransactionModal {
  display: none;
}

.usd_value,
.amount,
.from_amount,
.to_amount {
  text-align: right;
}

.input-container {
  margin: 1rem 0rem;
}

.input-cell {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.input-cell input,
select {
  background-color: #1a1e24;
  color: white;
  font-size: 16px;
}

.input-cell span {
  font-size: 16px !important;
  text-align: left;
  margin-right: 2rem;
  align-content: space-evenly;
}

.custom-form-control {
  width: 250px !important;
  display: block;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  background-color: #1a1e24;
  background-clip: padding-box;
  border: 1px solid #ced4da !important;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.disabled {
  color: rgb(143, 137, 137) !important;
  cursor: not-allowed;
  border-color: rgb(143, 137, 137) !important;
}

#noResponseElement {
  text-align: center;
}

.search-container-token {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  height: 120px;
}

.search-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.search-container .search-group {
  margin-right: 1rem;
}

.search-group {
  display: flex;
  align-items: center;
}

.search-group .search-name {
  margin-right: 1rem;
}

.search-selector {
  width: 280px !important;
  background-color: rgb(26, 30, 36) !important;
  font-size: 16px;
  transition: border-color ease-in 0.5s;
}

.search-selector:hover {
  border-color: #ff9800;
}

#loading_spinner {
  z-index: 999;
  width: 50px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#sub_loading_spinner {
  z-index: 999;
  width: 50px;
  height: 50px;
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#tradersTableBody .trader_name {
  width: 20%;
}

#tradersTableBody .last_trade_date {
  width: 20%;
}

#tradersTableBody .currency_name {
  width: 10%;
}

#tradersTableBody .action {
  width: 10%;
}

#tradersTableBody .usd_value {
  width: 12%;
}

#tradersTableBody .transaction-last-30-days-count {
  width: 8%;
}

#tradersTableBody .youtube_video {
  width: 20%;
}

#tradersTableBody td:first-child {
  white-space: normal !important;
}

#trader_table td {
  font-weight: 100 !important;
}

#trader_table div>span>a {
  font-weight: 100 !important;
}

.search_panel_row {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}

.source-token-logo-cell,
.action-cell,
.to-token-logo-cell {
  width: 20px;
}

.date-cell,
.trader-cell {
  width: 200px;
}

.amount-cell,
.usd-cell,
.comments-cell {
  width: 180px;
}

.bg-red {
  background-color: #b5494c !important;
}

.bg-green {
  background-color: #2ec181 !important;
}

.bg-blue {
  background-color: #1456d6 !important;
}

.hide {
  display: none;
}

/* Subtopics Styling */
.subtopic_panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Space between checkboxes */
  padding: 10px;
  background-color: #1e1e1e;
  /* Dark background for contrast */
  border-radius: 8px;
  /* Rounded corners */
  border: 1px solid #333;
  /* Border for separation */
  max-width: 400px;
  /* Increased width */
  width: 100%;
  /* Ensure it spans the full width up to max-width */
  margin: 20px auto;
  /* Center align */
}

.form-check {
  display: flex;
  align-items: center;
  /* Center align checkbox and label */
  padding: 5px 0;
  /* Padding for better spacing */
}

.form-check-input {
  margin-right: 10px;
  /* Space between checkbox and label */
  width: 18px;
  height: 18px;
}

.form-check-label {
  font-size: 1rem;
  /* Adjust font size */
  color: #ffffff;
  /* White text for readability */
}

input[type="datetime-local"] {
  color: #ffffff;
  /* Sets the font color to white */
  background-color: #1a1e24;
  /* Ensure the background color matches the dark theme */
  border: 1px solid #424242;
  /* Border to match the theme */
  padding: 10px;
  /* Padding for better appearance */
  border-radius: 4px;
  /* Rounded corners */
}

input[type="datetime-local"]::placeholder {
  color: #8a8a8a;
  /* Placeholder color for better visibility */
}

input[type="datetime-local"]::-webkit-datetime-edit {
  color: #ffffff;
  /* Webkit specific font color */
}

input[type="datetime-local"]::-ms-input-placeholder {
  color: #ffffff;
  /* Edge specific font color */
}

input[type="datetime-local"]::-moz-placeholder {
  color: #ffffff;
  /* Firefox specific font color */
}

input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  /* Ensures the icons are visible in dark mode */
}

/* Summary Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #d4d3d3;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 800px;
}

.modal-summary-content {
  color: #000000;
  line-height: 1.6;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* Copy Button Styling */
.copy-button {
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 8px 4px;
  background-color: transparent;
  /* Ensure background is transparent */
  float: right;
}

.copy-button img {
  width: 18px;
  height: 18px;
  filter: grayscale(100%);
  background-color: transparent;
  margin-right: 10px;
  margin-top: 5px;
}

.copy-button img:hover {
  filter: grayscale(100%);
  /* Keeps the icon appear silver */
  background-color: transparent;
  /* Keeps the background color same */
}

/* Additional styles to remove any dark background on hover */
.copy-button:hover {
  background-color: transparent !important;
  /* Override any other background styles */
}

.payment-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: nowrap;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.payment-plan-item {
  flex: 1 1 0;
  border: 1px solid #424242;
  border-radius: 10px;
  padding: 20px;
  background-color: #1a1e24;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-width: 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  /* Ensure all items are of equal height */
  margin: 0 10px;
  /* Add some margin for spacing */
}

.plan-title,
.plan-cost,
.plan-description,
.plan-button,
.plan-benefits {
  text-align: center;
  margin-bottom: 15px;
}

.plan-title span {
  font-size: 1.5em;
  color: #ff9800;
}

.plan-cost {
  font-size: 2em;
  color: #fff;
}

.plan-description {
  color: #ddd;
}

.plan-button {
  background-color: #ff9800;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.plan-button:hover {
  background-color: #e68a00;
}

.plan-benefits .benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.plan-benefits .benefit-item img {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .payment-section {
    flex-wrap: wrap;
  }
}

.connected-wallet-button {
  background-color: green !important;
  color: white !important;
  border: 1px solid #555 !important;
}

.connected-wallet-button:hover {
  background-color: darkgreen !important;
}

/* Wallet Modal */

.modal-wallet {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-dialog-wallet {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.modal-content-wallet {
  background-color: #252525;
  padding: 40px 30px 100px 30px;
  border: 1px solid #888;
  width: 300px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation-name: modalopen;
  animation-duration: 0.4s;
  border-radius: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-content-wallet-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 17px;
  height: 17px;
  cursor: pointer;
}

.modal-header-wallet,
.modal-footer-wallet {
  text-align: center;
}

.modal-title-wallet {
  color: #ffffff;
  font-size: 32px;
  line-height: 44px;
  opacity: 0.9;
  font-weight: 700;
}

.modal-description-wallet {
  color: #b8b5b5;
  font-size: 14px;
  line-height: 18px;
  padding: 10px 0;
  text-align: center;
}

.modal-footer-wallet {
  margin-top: 20px;
}

.modal-success-img-wallet {
  width: 150px;
  height: auto;
  padding-top: 1.5rem;
  margin-top: 20px;
  margin-bottom: 20px;
}

.modal-success-text-wallet {
  text-align: center;
}

.verify_item {
  display: flex;
  align-items: center;
  width: 100%;
}

.verify_item>div {
  padding: 0px 0px 0px 10px;
}

.wallet_address {
  font-size: 12px;
  line-height: 16px;
  color: grey;
}

.modal-footer-wallet>button:hover {
  background-color: #1a1e24;
}

.modal-footer-wallet>button {
  border: 1px solid #ddd !important;
  background-color: #2f2f2f;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.close-wallet {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-wallet:hover,
.close-wallet:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.wallet_item {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #424242;
  border-radius: 3px;
  padding: 0.5rem;
  margin: 10px 0;
}

.wallet_item img {
  width: 30px;
  margin-right: 15px;
}

.wallet_item p {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
}

.modal-body-wallet {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* General table styles for consistency */
.table-container table th,
.table-container table td {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #e3e6ea;
}

/* Link styles within tables */
.table-container a {
  color: #ff9800;
  text-decoration: none;
}

.table-container a:hover,
.table-container a:focus {
  color: #ffffff;
  text-decoration: underline;
}

/* Specific styles for trader table cells */
#trader_table td {
  font-weight: normal !important;
  font-size: 16px !important;
}

#trader_table td a {
  font-weight: normal !important;
  font-size: 16px !important;
  color: #ff9800;
}

#trader_table td a:hover,
#trader_table td a:focus {
  color: #ffffff;
  text-decoration: underline;
}

.filter-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.filter-apply-button-group {
  display: flex;
  gap: 10px;
}

.filter-apply-button {
  width: 140px;
}

.theme-link {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.char-fitler-button-group {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: right;
}

.char-filter-apply-button {
  padding: 5px 15px !important;
}

.trader-filter {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats-display {
  font-size: 1.5em;
  color: #333;
  margin: 20px 0;
}

.features-section .section-subtitle {
  margin-top: 40px;
  font-size: 1.8em;
}

.char-filter-apply-button-active {
  color: #ff9800;
}

.social-modify-modal .input-cell span {
  width: 200px;
}

.social-update-modal-content {
  padding: 40px 20px;
  min-height: auto !important;
}

.modify-trader-modal tr th,
.modify-trader-modal tr td {
  border: none !important;
  text-align: right;
  padding: 8px;
}

.wallet-dropdown {
  min-width: 250px;
  border: 1px solid #424242;
  border-radius: 5px;
  position: absolute;
  background-color: #1a1e24;
  right: 0;
  top: 120%;
  display: flex;
  flex-direction: column;
}

.wallet-dropdown-header {
  display: flex;
  justify-content: space-between;
  padding: 5px;
  gap: 30px;
}

.wallet-dropdown-wallet-address {
  margin-left: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.wallet-dropdown-avatar {
  width: 25px !important;
  height: 25px !important;
}

.wallet-dropdown a:hover {
  background-color: #1a1e24 !important;
  color: white !important;
}

.wallet-dropdown-disconnect-button {
  color: white;
  border: 1px solid #555;
  border-radius: 10px;
  font-size: 12px;
  padding: 6px 10px !important;
}

.wallet-dropdown-disconnect-button:hover {
  background-color: #484c57;
}

.wallet-dropdown-subscription{
  font-size: 12px;
  color: #5e5e5e;
}

.dropdown-wallet-profile{
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
}

.dropdown-wallet-profile a{
  text-transform: none !important;
}

.wallet-dropdown-subscription-section{
  padding: 10px 10px 10px 10px;
}

.wallet-dropdown-plans-background{
  width: 100%;
  background-image: url(./img/subscription.svg);
  background-size: cover;
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
}

.wallet-dropdown-plans-title{
  color: white;
  font-size: 18px;
}

.wallet-dropdown-plans-description{
  display: flex;
  align-items: center;
  gap: 5px;
}

.wallet-dropdown-plans-description span {
  color: white;
  font-size: 12px;
}

.plans-link{
  padding: 0px !important;
  color: #0ea0d1 !important;
  font-size: 12px;
}

.plans-link:hover {
  text-decoration: underline;
  color: #0ea0d1 !important;
}

.wallet-dropdown {
  display: none;
}