/* Grundlayout */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d;
    color: #f0e6e0;
}

h1, h2 {
    font-family: 'Cinzel', serif;
    color: #c0392b;
}

/* Logo */
.logo-container {
    position: relative;
    display: inline-block;
}

.logo {
    width: 120px;
    margin-bottom: 10px;
}

/* Header */
header {
    text-align: center;
    padding: 40px 20px;
    border-bottom: 2px solid #c0392b;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: #1a1a1a;
    padding: 10px 0;
    flex-wrap: wrap;
}

nav a {
    color: #f0e6e0;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
}

nav a:hover {
    color: #c0392b;
}

/* Hauptinhalt */
main {
    max-width: 900px;
    margin: auto;
    padding: 30px;
}

section {
    background: #161616;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 0 12px rgba(192, 57, 43, 0.2);
}

ul {
    padding-left: 20px;
}

/* Formular */
form {
    display: flex;
    flex-direction: column;
}

input, textarea {
    background: #2b2b2b;
    border: 1px solid #c0392b;
    border-radius: 8px;
    color: #fff;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
}

button {
    background: #c0392b;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: bold;
    cursor: pointer;
    width: 150px;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

button:hover {
    background: #e74c3c;
}

/* Tabelle */
table {
    width: 100%;
    border-collapse: collapse;
    color: #f0e6e0;
}

th, td {
    border: 1px solid #c0392b;
    padding: 10px;
    text-align: left;
    vertical-align: top;
}

th {
    background: #2b2b2b;
}

tbody tr:nth-child(even) {
    background: #1a1a1a;
}

/* Buttons nebeneinander in einer Zelle */
form.inline {
    display: inline-block;
    margin: 0 5px 0 0;
}

/* Spezielles Styling für die Buttons in der Tabelle */
td form button {
    width: auto;
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Notify Meldung */
#notify {
    margin-top: 10px;
    font-weight: bold;
    font-size: 1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    font-size: 0.9rem;
}

/* Mobiloptimierung */
@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        width: 90px;
    }

    input, textarea, button {
        font-size: 1rem;
    }

    table, th, td {
        font-size: 0.8rem;
    }

    /* Buttons in Tabelle auch mobil nebeneinander */
    form.inline {
        margin-right: 8px;
    }
}

/* Rollenfarben */
.role-server {
    color: #e74c3c;
    font-weight: bold;
  }

  .role-admin {
    color: #ff6666;
    font-weight: bold;
  }

  .role-moderator {
    color: #2ecc71;
    font-weight: bold;
  }

  .role-support {
    color: #f1c40f;
    font-weight: bold;
  }
  
  /* Teamliste mit Bildern */
  .team-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .team-member {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  }
  
  .team-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid #c0392b;
  }
  
  .team-info {
    flex: 1;
  }
  

  .empty-line {
    list-style-type: none; /* kein Punkt */
    height: 1em;           /* Platz für Zeilenhöhe */
    margin: 0;
    padding: 0;
  }