body {
    background-color: #121212;
    color: white;
    font-family: 'Roboto', sans-serif;
}

.text-glow {
    text-shadow: 0 0 15px rgba(255, 0, 127, 0.6);
}

/* Hintergrund schwarz (Hero) */
.hero-bg {
    background-color: #121212;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Tabellen Styling */
.fussball-widget-container table {
    width: 100%;
    background: white;
    color: black;
    border-radius: 8px;
    overflow: hidden;
}

.fussball-widget-container th {
    background: #eee;
    padding: 10px;
    text-align: left;
}

.fussball-widget-container td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* Tabs Animation */
.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}