.discord-widget {
            background-color: #36393f;
            color: white;
            border-radius: 8px;
            overflow: hidden;
            width: 300px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            font-family: 'Calibri', monospace;
            margin-top: 0;
        }
        
        .server-banner {
            height: 100px;
            background-size: cover;
            background-position: center;
            background-image: url('bilder/Server Banner.png');
        }
        
        .server-info {
            padding: 15px;
            text-align: center;
        }
        
        .server-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 5px solid #36393f;
            margin-top: -50px;
            object-fit: cover;
            background-color: #202225;
        }
        
        .server-name {
            font-weight: bold;
            font-size: 18px;
            margin: 10px 0 5px;
        }
        
        .server-description {
            color: #b9bbbe;
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .online-count {
            color: #3ba55c;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .join-button {
            background-color:  var(--color-dark);
            color: white;
            border: none;
            width: 100%;
            padding: 10px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.2s;
        }
        
        .join-button:hover {
            background-color: var(--color-base);
        }

        /* Widget 2 - Exakt gleiches Styling wie Widget 1, aber mit "-2"-Suffix */
.discord-widget-2 {
    background-color: #36393f;
    color: white;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Calibri', monospace;
    margin-top: 20px; /* Abstand zum ersten Widget */
}

.server-banner-2 {
    height: 100px;
    background-size: cover;
    background-position: center;
    background-image: url('bilder/wishmc_banner.webp'); /* Banner für Server 2 */
}

.server-info-2 {
    padding: 15px;
    text-align: center;
}

.server-icon-2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid #36393f;
    margin-top: -50px;
    object-fit: cover;
    background-color: #202225;
}

.server-name-2 {
    font-weight: bold;
    font-size: 18px;
    margin: 10px 0 5px;
}

.server-description-2 {
    color: #b9bbbe;
    font-size: 14px;
    margin-bottom: 15px;
}

.online-count-2 {
    color: #3ba55c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.join-button-2 {
    background-color: var(--color-dark);
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

.join-button-2:hover {
    background-color: var(--color-base);
}