html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Center the content */
body {
    font-family: "Segoe UI", sans-serif;
    background: #f5f7fa;
    margin: 0;
    padding: 40px;
    display: flex;
    justify-content: center;
}

/* Main card */
.status-card {
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: 420px;
}

    /* Title */
    .status-card h1 {
        margin-top: 0;
        font-size: 26px;
        text-align: center;
        color: #333;
    }

/* Online/offline text */
.online {
    color: #2ecc71;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.offline {
    color: #e74c3c;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

/* Player list */
.player {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .player img {
        border-radius: 6px;
        margin-right: 12px;
        width: 32px;
        height: 32px;
    }

.no-players {
    text-align: center;
    color: #777;
}

