.Server{
    width: auto;
    height: auto;
    scale: 100%;
    background-color: rgb(58, 145, 132);
    border-color: darkblue;
    border-width: 5%;
}
.Status_Tabele{
    border-collapse: collapse;
}
.Status{
    width: 40%;
    text-align: right;
    border: 0px;
    border-right: 1px;
    border-color: black;
    border-style: solid;
}
.Status_Ansicht{
    width: 50%;
    text-align: Center;
}
.Status_Ansicht_Schrift{
    font-size:clamp(0.1rem, 2.25vw, 1.5rem);
    border: 2px;
    border-color: black;
    border-style: solid;
    text-align: Center;
    padding: 10px; /* Innerer Abstand */
}

.edit-icon {
    width: 24px;
    height: 24px;
    transition: stroke 0.3s ease-in-out;
}

/* 🎨 Farbe beim Hover ändern */
.edit-btn:hover .edit-icon {
    stroke: #007BFF; /* Blau beim Hover */
}
.edit-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.Game_Schrift{
    text-align: center;
    background-color: rgba(255, 255, 255, 0.575);
    color: #ff0000;
    font-size:clamp(0.1rem, 2.75vw, 2.5rem);
    width: 100%;
}
.Game{
    display: flex; /* Flexbox aktivieren */
    flex-wrap: wrap; /* Elemente umbrechen, wenn kein Platz vorhanden ist */
    justify-content: center; /* Zentriert die Elemente horizontal */
    align-items: center; /* Zentriert die Elemente vertikal */
    gap: 10px; /* Abstand zwischen den Boxen */
    margin-top: 1%;
    padding: 10px; /* Innerer Abstand */
}
#discord-chat {
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #2f3136;            /* Discord-Hintergrund */
    border-radius: 8px;
    padding: 10px;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #dcddde;

    
    /* wichtig: Scrollbar immer zeigen */
    overflow-y: scroll;      /* statt auto */
    scrollbar-gutter: stable; /* (optional) verhindert „springen“ beim Ein-/Ausblenden */
}

.message {
    display: flex;
    margin-bottom: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.msg-content {
    flex-grow: 1;
}

.username {
    color: #7289da;
    font-weight: 600;
    margin-right: 5px;
}

.timestamp {
    color: #72767d;
    font-size: 12px;
}