/* style.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e1e1e, #3a3a3a);
    color: white;
    transition: background 1s ease-in-out;
    font-size: 16px;
  }
  
  nav {
    display: flex;
    justify-content: center;
    background-color: #111;
    padding: 15px;
    gap: 20px;
  }
  
  nav button {
    background: #333;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
  }
  
  nav button:hover {
    background: #555;
  }
  
  .container {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
  }
  
  .tab {
    display: none;
  }
  
  .tab.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }
  
  input[type="text"] {
    padding: 12px;
    width: 100%;
    border-radius: 10px;
    border: none;
    margin: 15px 0;
    background: #2c2c2c;
    color: white;
    font-size: 16px;
  }
  
  button {
    background-color: #008080;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background-color: #00b3b3;
  }
  
  .hidden {
    display: none;
  }
  
  #statusText {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  #playersList {
    margin-top: 20px;
    max-height: 200px;
    overflow-y: auto;
    font-size: 1.2rem;
    color: #f8f8f8;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    padding: 15px;
    text-align: left;
  }
  
  #playersList p {
    margin: 5px 0;
    padding: 8px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    transition: background 0.3s ease;
  }
  
  #playersList p:hover {
    background-color: rgba(0, 255, 0, 0.6);
  }
  
  #uptimeInfo {
    font-size: 1.1rem;
    font-weight: normal;
    margin-top: 10px;
  }
  
  #motd {
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 15px;
    color: #ccc;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  