/* Grundlegende Stile, die Sie bereits definiert haben */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.65em;


}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: linear-gradient(to right, #40E0D0, #FFD580);

}
th, td {
    border: 1px solid black;
    padding: 0.45em;
    text-align: left;
}
th {
    background-color: #81DAF5;
}
.sticky {
    position: -webkit-sticky; /* for Safari */
    position: sticky;
    left: 0;
    background-color: white;
    z-index: 1;
    background-color: #81DAF5;

#tbody{
        background: linear-gradient(to right, #40E0D0, #FFD580);

}

/* Media Queries für verschiedene Bildschirmgrößen */

/* Kleinere Bildschirme (z.B. Handys) */
@media (max-width: 600px) {
    body {
        flex-direction: column;
    }

    .band-info-container {
        flex-direction: column;
        gap: 5px;
    }

    .band-info {
        margin: 10px 5%;
        text-align: center;
    }
    body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 10em;
    }
}

/* Mittelgroße Bildschirme (z.B. Tablets) */
@media (min-width: 601px) and (max-width: 1024px) {
    .band-info-container {
        flex-direction: row;
        gap: 20px;
    }

    .band-info {
        padding: 20px;
        max-width: 100%;
        margin-left: 0;
    }
        body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 10em;
    }
}

/* Größere Bildschirme (z.B. Desktop) */
@media (min-width: 1025px) {
    .stage {
        width: 60%;
    }

    .band-info {
        font-size: 1.4em;
    }
    body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1em;
    }
}