/* Configuration de base */
body {
    background-color: #0f111a;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.maintenance-container {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
}

/* --- Styles existants pour .login-logo (inchangés) --- */
.login-logo { position: relative; display: flex; justify-content: center; margin-bottom: 1.5rem; }
.login-logo img {
  width: 120px; height: 120px;
  image-rendering: pixelated;
  filter: drop-shadow(0 8px 0 rgba(0,0,0,.25)) drop-shadow(0 0 18px rgba(255, 80, 120, .35));
  animation: bob 3s ease-in-out infinite;
}
/* ... reste de ton CSS de logo ... */

/* --- Nouveau style pour le container de statut --- */
.server-control-container {
    background: rgba(26, 29, 46, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2d3250;
    text-align: center;
    backdrop-filter: blur(5px);
}

.status-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.server-status {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* États de la LED */
.offline  { background: #ff4b2b; box-shadow: 0 0 15px #ff4b2b; }
.online   { background: #2ecc71; box-shadow: 0 0 15px #2ecc71; }
.starting { background: #f1c40f; box-shadow: 0 0 15px #f1c40f; animation: pulse 1s infinite; }
.error    { background: #95a5a6; box-shadow: 0 0 15px #7f8c8d; }

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.status-text {
    font-weight: bold;
    font-family: monospace;
    letter-spacing: 1px;
}

.server-message {
    margin-top: 15px;
    font-size: 0.85rem;
    min-height: 1.2em;
}
.server-message.error { color: #ff4b2b; }
.server-message.success { color: #2ecc71; }