/* YouTube Widget Styles */
.youtube-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: nowrap; 
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.youtube-widget {
    background-color: #36393f;
    border-radius: 8px;
    overflow: hidden; 
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease; 
    position: relative;
    top: 0;
    flex-shrink: 0;
}

.channel-banner {
    height: 100px;
    background-size: cover;
    background-position: center;
}

.channel-info {
    padding: 15px;
    text-align: center;
    position: relative;
    font-family: 'Calibri', monospace;
}

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

.channel-name {
    font-weight: bold;
    font-size: 18px;
    margin: 10px 0 5px;
    color: white;
    font-family: 'Calibri', monospace;
}

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

.subscribe-button {
    background-color: #FF0000;
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

.subscribe-button:hover {
    background-color: #CC0000;
}

/* Mobile Ansicht */
@media screen and (max-width: 1100px) {
    .youtube-container {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 700px) {
    .youtube-container {
        flex-direction: column;
        align-items: center; /* Zentriert die Widgets horizontal */
        gap: 20px;
        width: 100%; /* Stellt sicher, dass der Container die volle Breite nutzt */
        padding: 0 10px; /* Gibt etwas Atemraum an den Seiten */
    }
}
