/* Archiv-Look: Dunkel, elegant, mit Akzenten, die an Tasten oder Gold erinnern */
body {
    font-family: 'Georgia', serif; /* Klassischere Schriftart */
    background-color: #2c3e50; /* Dunkles, beruhigendes Blau-Grau */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="%232c3e50"/><line x1="0" y1="20" x2="100" y2="20" stroke="%2334495e" stroke-width="1"/><line x1="0" y1="40" x2="100" x2="40" stroke="%2334495e" stroke-width="1"/><line x1="0" y1="60" x2="100" y2="60" stroke="%2334495e" stroke-width="1"/><line x1="0" y1="80" x2="100" y2="80" stroke="%2334495e" stroke-width="1"/></svg>'); /* Subtiles Notenlinien-Muster */
    color: #ecf0f1; /* Helles, leicht cremiges Weiß */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    background-color: rgba(33, 47, 60, 0.95); /* Sehr dunkles Blau-Grau mit Transparenz */
    padding: 50px;
    border-radius: 5px; /* Etwas kantiger, klassischer */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 550px;
    backdrop-filter: blur(5px);
    border-top: 5px solid #f39c12; /* Akzentfarbe (Gold/Messing-Effekt) */
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

h1 {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; /* Sehr klassisch */
    font-size: 3em;
    margin-bottom: 5px;
    color: #f39c12; /* Akzentfarbe */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

p {
    font-size: 1.05em;
    opacity: 0.9;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #bdc3c7; /* Leicht abgedunkeltes Weiß für Beschriftungen */
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #34495e; /* Dunklerer Rand */
    border-radius: 3px;
    background-color: #3f546c; /* Etwas helleres Grau für das Eingabefeld */
    color: #ecf0f1;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-control::placeholder {
    color: rgba(236, 240, 241, 0.5);
}

.form-control:focus {
    outline: none;
    border-color: #f39c12; /* Fokus-Akzent */
    box-shadow: 0 0 5px rgba(243, 156, 18, 0.5);
}

.btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 3px;
    background-color: #f39c12; /* Akzentfarbe als Haupt-Button-Farbe */
    color: #2c3e50; /* Dunkle Schrift auf Akzentfarbe */
    font-size: 1.3em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #e67e22; /* Dunklerer Goldton beim Hover */
}

.login-link {
    color: #bdc3c7;
    text-decoration: none;
    font-style: italic;
    margin-bottom: 20px;
    display: block;
}

.login-link:hover {
    color: #f39c12;
}

.success-message, .error-message {
    margin-top: 25px;
    padding: 15px;
    border-radius: 3px;
    font-weight: bold;
    border-left: 5px solid;
    text-align: left;
}

.success-message {
    background-color: #d1e7dd;
    color: #0f5132;
    border-color: #0f5132;
}

.error-message {
    background-color: #f8d7da;
    color: #842029;
    border-color: #842029;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    margin-bottom: 40px;
    border-top: 1px dashed #34495e;
    border-bottom: 1px dashed #34495e;
    padding: 15px 0;
}

.stat-item {
    font-size: 1.6em;
    font-weight: bold;
    color: #f39c12; /* Akzentfarbe für die Zahlen */
}

.stat-item span {
    display: block;
    font-size: 0.6em;
    font-weight: normal;
    opacity: 0.8;
    margin-top: 5px;
    color: #ecf0f1;
}

.github-link {
    display: block;
    margin-top: 35px;
    font-size: 1em;
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.github-link:hover {
    color: #f39c12;
}
/* Fügen Sie diesen Abschnitt am Ende von style.css hinzu */

/* Server Status Wrapper */
.server-status-wrapper {
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px dashed #34495e;
}

.server-status-wrapper h2 {
    font-size: 1.5em;
    color: #ecf0f1;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Große Server-Links */
.server-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin: 10px 0;
    /* Verwenden Sie die Akzentfarbe als Hintergrund für einen besseren Button-Look */
    background-color: #f39c12; 
    color: #2c3e50; /* Dunkle Schrift auf hellem Button */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.1s, box-shadow 0.3s;
    font-size: 1.2em; /* Etwas größer */
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Button-Schatten */
    border: none;
}

.server-link:hover {
    background-color: #e67e22; /* Dunklerer Goldton beim Hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Status-Indikator (der farbige Punkt) */
.status-indicator {
    width: 15px; /* Größerer Status-Punkt */
    height: 15px; /* Größerer Status-Punkt */
    border-radius: 50%;
    margin-left: 10px;
    border: 2px solid #2c3e50; /* Dunkle Umrandung */
}

/* Status: Online (Grün) */
.server-link-online .status-indicator {
    background-color: #2ecc71; /* Smaragdgrün */
    box-shadow: 0 0 10px #2ecc71;
}

/* Status: Offline (Rot) */
.server-link-offline .status-indicator {
    background-color: #e74c3c; /* Indisch Rot */
    box-shadow: 0 0 10px #e74c3c;
}

.status-hint {
    font-size: 0.85em;
    opacity: 0.6;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
}