/* Allgemeine Einstellungen */
body {
    font-family: Arial, sans-serif;
    background-color: #2c2f33;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #23272a;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Hauptbereich */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

/* Embed-Stil */
.embed {
    background-color: #36393f;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    text-align: center;
}

/* Banner */
.banner img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Profil */
.profile {
    margin-top: -50px;
    text-align: center;
}

.profile .pfp {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #2c2f33;
}

.profile h2 {
    margin: 10px 0 0;
    font-size: 1.5em;
    color: #ffffff;
}

/* Status */
.status {
    padding: 20px;
    text-align: left;
}

.status h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #ffffff;
}

.status ul {
    list-style: none;
    padding: 0;
}

.status li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1em;
    color: #ffffff;
}

.status-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.status-icon.online {
    background-color: #43b581;
}

.status-icon.maintenance {
    background-color: #faa61a;
}

.status-icon.problems {
    background-color: #94610a;
}

.status-icon.offline {
    background-color: #f04747;
}

.last-updated {
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
    font-style: italic;
}
