body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f0f0f0; /* Heller Standard-Hintergrund */
    color: #333; /* Helle Standard-Textfarbe */
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode {
    background-color: #333; /* Dunkler Modus Hintergrund */
    color: #f0f0f0; /* Dunkler Modus Textfarbe */
}

.theme-switch-wrapper {
    position: absolute;
    top: 20px;
    right: 20px;
}

.theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    cursor: pointer;
    position: absolute;
    transition: 0.4s;
}

.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: 0.4s;
    width: 26px;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.content {
    text-align: center;
    margin-top: 50px;
}

.logo {
    width: 1024px; /* Behalte die Auflösung, aber skaliere für die Anzeige */
    max-width: 80%; /* Stellt sicher, dass es auf kleineren Bildschirmen passt */
    height: auto;
    display: block;
    margin: 30px auto;
}

.server-overview {
    background-color: #fff; /* Heller Modus Karten-Hintergrund */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 40px auto;
    max-width: 600px;
    text-align: left;
}

body.dark-mode .server-overview {
    background-color: #444; /* Dunkler Modus Karten-Hintergrund */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.server-overview h2 {
    text-align: center;
    margin-bottom: 20px;
}

.server-overview ul {
    list-style: none;
    padding: 0;
}

.server-overview li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

body.dark-mode .server-overview li {
    border-bottom: 1px solid #555;
}

.server-overview li:last-child {
    border-bottom: none;
}
