      body {
        background-color: #000000;
        color: #7fdbff;
        font-family: "Roboto", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
      }

      .container {
        background-color: #0a0a0a;
        border: 1px solid #00ffff;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
        padding: 2rem;
      }

      h1 {
        color: #ff00ff;
        text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 2px;
      }
      input[type="text"] {
        background-color: #000000;
        border: 1px solid #00ffff;
        color: #ffffff;
        padding: 0.5rem 1rem;
        border-radius: 5px;
      }

      input[type="text"]::placeholder {
        color: #7fdbff;
        opacity: 0.7;
      }

      #refresh-status {
        color: #ff00ff;
        font-size: 1rem;
      }

      .tabulator {
        background-color: transparent;
        border: none;
      }

      .tabulator-header {
        background-color: #0a0a0a;
        border-bottom: 2px solid #ff00ff;
      }

      .tabulator-col {
        background-color: transparent;
        border-right: 1px solid #00ffff;
      }

      .tabulator-col-title {
        color: #ffffff;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .tabulator-cell {
        border-right: 1px solid #00ffff;
        color: #7fdbff;
      }

      .tabulator-row {
        background-color: #0a0a0a;
        border-bottom: 1px solid #00ffff;
        transition: background-color 0.3s, box-shadow 0.3s;
      }

      .tabulator-row:hover {
        background-color: rgba(0, 255, 255, 0.1);
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
      }

      .tabulator-col-sorter-element {
        background: black !important;
      }

      .tabulator-col-title {
        color: ff00ff !important;
      }

      .tabulator-row-even {
        background-color: black !important;
      }

      .tabulator-row-odd {
        background-color: rgb(30, 30, 30) !important;
      }

      .tabulator-footer {
        background-color: #0a0a0a;
        border-top: 2px solid #ff00ff;
      }

      .positive {
        color: #00ff00;
        text-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
      }

      .negative {
        color: #ff0000;
        text-shadow: 0 0 5px rgba(255, 0, 0, 0.7);
      }

      /* Glowing effect for important elements */
      .tabulator-col:hover .tabulator-col-title,
      .tabulator-cell:hover {
        text-shadow: 0 0 5px #00ffff;
      }

      /* Scrollbar styling for Webkit browsers */
      ::-webkit-scrollbar {
        width: 10px;
        height: 10px;
      }

      ::-webkit-scrollbar-track {
        background: #000000;
      }

      ::-webkit-scrollbar-thumb {
        background: #00ffff;
        border-radius: 5px;
      }

      ::-webkit-scrollbar-thumb:hover {
        background: #ff00ff;
      }

      /* Ensure the background color is applied to the entire page */
      html,
      body {
        min-height: 100%;
        margin: 0;
        padding: 0;
      }

      /* Additional styling to ensure content is visible */
      #meme-tokens-table {
        color: #7fdbff;
      }
      .alert-input {
        background-color: #000000;
        border: 1px solid #00ffff;
        color: #ffffff;
        padding: 0.25rem 0.5rem;
        border-radius: 5px;
        width: 60px;
      }

      .alert-button {
        background-color: #ff00ff;
        color: #000000;
        padding: 0.25rem 0.5rem;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
      }

      .alert-button:hover {
        background-color: #ff66ff;
      }

      #global-alert-container {
        margin-bottom: 1rem;
      }

      #alert-log {
        margin-top: 1rem;
        padding: 1rem;
        background-color: rgba(0, 255, 255, 0.1);
        border: 1px solid #00ffff;
        border-radius: 5px;
        max-height: 500px
        overflow-y: auto;
      }