/* General Hacker Theme */

footer a i {
    font-size: 1.5rem; /* ✅ Make them smaller */
    margin: 0 10px;
    color: #00ff00;
    transition: color 0.3s ease;
  }
  
  footer a i:hover {
    color: #00dd00;
  }
  footer {
    margin-top: 4rem;
    font-size: 1.5rem;
  }
  
  footer i {
    margin: 0 0.5rem;
    font-size: 1.2rem;
  }
  .pagination {
    text-align: center;
    margin-top: 1rem;
  }
  .pagination button {
    background: #111;
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 0.4rem 0.8rem;
    margin: 0 0.2rem;
    cursor: pointer;
    font-family: monospace;
  }
  .pagination button.active {
    background-color: #00ff00;
    color: #000;
  }
  #resultCount {
    text-align: center;
    margin-top: 1rem;
    font-family: monospace;
    color: #0f0;
  }
  
  #search::placeholder {
    text-align: center;
    color: #00aa00;
    opacity: 0.7; /* Optional: subtle look */
  }
  
  #resultCount {
    text-align: center;
    margin-top: 1rem;
    font-family: monospace;
    color: #0f0;
  }
#search {
    padding: 1rem;
    width: 500px;
    font-size: 1.2rem;
    font-family: 'Courier New', Courier, monospace;
    background-color: #000;
    color: #00ff00;
    border: 2px solid #00ff00;
    border-radius: 4px;
    outline: none;
    box-shadow: 0 0 8px #00ff00;
    transition: box-shadow 0.3s ease;
    text-align: center;
  }
  
  #search:focus {
    box-shadow: 0 0 16px #00ff00;
  }
  

body {
    background-color: #0f0f0f;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    font-size: 2rem;
    margin: 0;
    padding: 0;
  }
  
  header, footer {
    background-color: #111;
    padding: 1rem;
    text-align: center;
  }
  
  header a, footer a {
    color: #00ff00;
    margin: 0 1rem;
    text-decoration: none;
  }
  
  header a:hover, footer a:hover {
    color: #0f0;
    text-decoration: underline;
  }
  
  table {
    width: 90%;
    margin: 2rem auto;
    border-collapse: collapse;
  }
  
  th, td {
    border: 1px solid #00ff00;
    padding: 1rem;
    text-align: left;
  }
  
  th {
    background-color: #111;
  }
  
  a.video-link {
    color: #00ffff;
    text-decoration: none;
  }
  
  a.video-link:hover {
    text-decoration: underline;
  }
  
