@media (max-width: 576px) {
    .likert-scale  {
        font-size: var(--bs-body-font-size-sm, 0.7em);
        font-weight: bold;
    }

       #loginButton {
        margin-top: 1rem;
    }
}


#navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* Gesamtergebnis */

.results {
    max-width: 900px;
    margin: 30px auto;
}

.total-results {
    padding: 2rem;
    margin-bottom: 2rem;
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.75rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    text-align: center;
}

#totalScore {
    display: block;
    margin: 10px 0;
    font-size: 2rem;
}

/* Balkendiagramm */

.chart-row {
    margin-bottom: 20px;
}

.chart-label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

.chart-bar-background {
    width: 100%;
    height: 32px;
    background-color: #e5e5e5;
    border-radius: 5px;
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
    padding-right: 10px;
    background-color: #0DCAF0;
    color: black;
    font-weight: bold;
    transition: width 0.5s ease;
}

.chart-bar-missing {
    width: 100%;
    background-color: #e5e5e5;
    color: black;
}

#privacy {
    margin-top: 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f8f8f8;
}

#privacy summary {
    font-weight: bold;
    cursor: pointer;
}

#privacy[open] {
    background-color: #f2f2f2;
}