/* Default (light mode) */
pre {
    background: #f0f0f0;
    color: #000;
    border: 1px solid #ccc;
    padding: 10px;
    font-family: monospace;
    user-select: text;
  }

  .dark pre {
    background: #111d2c;
    color: #e7e7e7;
    border: 1px solid #444444;
  }
  
  .card-body {
    padding-top: 0;
  }

  #countLabel {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: #007bff; /* blue background */
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-family: sans-serif;
    display: none;
  }