    body {
      background-color: #222;
      font-family: 'Inter', sans-serif;
      margin: 0;
      padding: 20px;
      color: white;
    }

    h6 {
      margin: 5px 0;
      
    }

    h1, h5, h3 {
        margin: 5px 0;
        text-align: center;
    }
    .user-form {
        text-align: center;
    }
    .admin-section {
      outline: none;
      resize: none;
      background-color: #111;
      color: white;
      border-radius: 6px;
      padding: 10px;
      font-size: 14px;
      box-shadow: inset 0 0 5px #000;
      border: 1px solid #444;
      display: flex;
      flex-direction: column;
      gap:15px

    }
    button {
      color: white;
      background-color: #a5529d;
      border: 1px solid #444;
      border-radius: 6px;
      padding: 10px 15px;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    button:hover {
      background-color: #f942fff8;
      padding: 10px 18px;
      transition: padding 0.05s ease;
      transition: background-color 0.2s ease;
    }
    button:active {
      background-color: rgb(174, 0, 255);
      transition: background-color 0.2s ease;
    }

    input, select {
      outline: none;
      border: 1px solid #444;
      color: white;
      background-color: #111;
      border-radius: 5px;
      padding: 10px;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
    }

    textarea {
      outline: none;
      resize: none;
      background-color: #111;
      color: white;
      border-radius: 6px;
      padding: 10px;
      font-size: 14px;
      box-shadow: inset 0 0 5px #000;
      border: 1px solid #444;
    }

    .login-form {
      outline: none;
      background-color: #111;
      color: white;
      border-radius: 6px;
      padding: 50px;
      font-size: 14px;
      box-shadow: inset 0 0 5px #000;
      border: 1px solid #444;
      align-items: center;
      display: flex;
      flex-direction: column;
      margin: 15px;
      gap: 15px;
      width: 50%;
      max-width: fit-content;
      justify-self: center;
    }

    .container {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-top: 20px;
      height: calc(100vh - 100px); /* full height minus some padding */
    }

    .editor {
      display: flex;
      flex-direction: column;
      width: 70%;
      gap: 10px;
      height: 100%;
    }

    textarea {
      flex-shrink: 0;
      height: 150px;
    }

    .command-bar {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      align-items: center;
    }

    #arguments {
      flex: 1;
    }

    /* Dropdown styling (same as input) */
    select {
      min-width: 180px;
      cursor: pointer;
    }

    /* New Server output & player list area */
    .output-player-panel {
      margin-top: 20px;
      background-color: #111;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      min-height: 0; /* important for flexbox scroll */
    }

    .output-console {
      background-color: #222;
      border: 1px solid #444;
      border-radius: 6px;
      color: #0f0;
      font-family: monospace;
      padding: 10px;
      height: 100px;
      overflow-y: auto;
      margin-bottom: 15px;
      white-space: pre-wrap;
      word-break: break-word;
      flex-shrink: 0;
    }

    .player-list {
      flex: 1;
      overflow-y: auto;
      border: 1px solid #444;
      border-radius: 6px;
      padding: 10px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      background-color: #222;
    }

    .player-item {
      display: flex;
      align-items: center;
      gap: 10px;
      background-color: #333;
      border-radius: 6px;
      padding: 6px 10px;
      transition: background-color 0.2s ease;
      cursor: default;
    }

    .player-item:hover {
      background-color: #444;
    }

    .player-checkbox {
      width: 18px;
      height: 18px;
      cursor: pointer;
      flex-shrink: 0;
      accent-color: #66cf79f8;
    }

    .player-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background-color: #555;
      flex-shrink: 0;
      object-fit: cover;
    }

    .player-info {
      display: flex;
      flex-direction: column;
      color: white;
      font-size: 0.9rem;
      flex: 1;
    }

    .player-info span {
      font-weight: 600;
    }

    .player-name {
      font-weight: 700;
      font-size: 1rem;
      color: wheat;
    }

    /* Custom stats area */
    .custom-stats {
      margin-top: 15px;
      display: flex;
      justify-content: space-around;
      font-size: 0.9rem;
      color: #bbb;
      user-select: none;
      flex-shrink: 0;
    }

    .custom-stats div {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 80px;
    }

    .custom-stats div span:first-child {
      font-weight: 600;
      color: #888;
      font-size: 0.75rem;
      text-transform: uppercase;
      margin-bottom: 4px;
      letter-spacing: 0.05em;
    }

    /* Game control buttons */
    .game-controls {
      margin-top: 15px;
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-shrink: 0;
    }

    /* Server panel */
    .server-panel {
      width: 40%;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100%;
    }

    .server-card {
      width: 100%;
      background-color: #111;
      border: 1px solid #444;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .server-header {
      margin-bottom: 10px;
      border-bottom: 1px solid #444;
      padding-bottom: 5px;
      flex-shrink: 0;
    }

    .server-list {
      overflow-y: auto;
      padding-right: 8px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex-grow: 1;
    }

    .server-entry {
      background-color: #222;
      border-radius: 8px;
      padding: 10px 15px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: flex;
      flex-direction: column;
      user-select: none;
      font-size: 0.9rem;
    }

    .server-entry:hover {
      background-color: #2a2a2a;
    }

    .server-entry-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
    }

    .server-id {
      font-weight: 700;
      font-size: 1rem;
      color: wheat;
    }

    .server-entry-bottom {
      display: flex;
      justify-content: space-around;
      color: #bbb;
      font-size: 0.8rem;
    }

    .server-info-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 60px;
    }

    .server-info-block h6:first-child {
      font-weight: 600;
      margin-bottom: 4px;
      color: #888;
      text-transform: uppercase;
      font-size: 0.65rem;
      letter-spacing: 0.05em;
    }

    .checkboxServer {
      width: 18px;
      height: 18px;
      cursor: pointer;
    }
  