.meldung-container {
    display: flex;
    justify-content: center;
    /*animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both 1s;*/
    padding: 20px 20px;
}

.meldung-inhalt {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.meldung {
    display: none;
    justify-content: center;
    text-align: center;
    font-size: 45px;
    color: var(--text-color);
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    border-radius: 20px;
    padding: 10px;
    width: fit-content;
    margin-top: 50px;
    animation: text-focus-in 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

.meldung-zwischen {
    font-size: 25px;
    color: rgb(184, 184, 184);
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
    width: fit-content;
    margin-top: 10px;
    animation: flip-in-hor-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 0.7s;
}

.button-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
    padding: 10px;
    position: relative;
}

.button-wiederholung,
.button-neustart,
.abfrage-abrechen {
    height: 100%;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    gap: 10px;
    border-radius: 15px;
    color: var(--text-color);
    transition: 0.5s;
    border: none;
    user-select: none;
}

.button-neustart:hover,
.button-wiederholung:hover,
.button-schließen:hover,
.button-eingaben-speichern:hover,
.abfrage-abrechen:hover,
.karte-überspringen-button:hover,
.bibliothek-item button:hover {
    cursor: pointer;
    background-color: var(--hover-color);
    color: white;
}

.button-wiederholung,
.button-neustart {
    background-color: var(--body-color);
    border: 3px solid var(--border-color) !important;
    animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 0.1s;
}

.abfrage-abrechen {
    background-color: rgb(156, 0, 0);
    animation: slide-in-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.starten-button-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.starten-button,
.los-button {
    padding: 10px 50px;
    font-size: 60px;
    color: var(--text-color);
    border: 3px solid var(--border-color);
    border-radius: 13px;
    background-color: var(--body-color);
    font-weight: 600;
    transition: 0.5s;
    animation: slide-in-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 1.5s;
    user-select: none;
    position: relative;
}

.letze-eingaben-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.last-Vokabeln-button-home {
    width: fit-content;
    padding: 10px 20px;
    font-size: 25px;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    background-color: var(--body-color);
    font-weight: 600;
    transition: 0.5s;
    animation: slide-in-bottom 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 1.8s;
    user-select: none;
    position: relative;
}

.los-button {
    padding: 10px 200%;
    background-color: var(--body-color);
    animation: slide-in-bottom 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 0.5s;
}

.los-button:hover,
.starten-button:hover,
.last-Vokabeln-button-home:hover {
    background-color: var(--hover-color);
    cursor: pointer;
}

/* Error Popup */
#error-popup,
#errorPopupListe {
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
    animation: flip-in-hor-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.error-popup i {
    font-size: 30px;
}

.popup-container-error {
    position: relative;
    background-color: rgba(146, 0, 0, 0.89);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    border-radius: 12px;
    text-align: center;
    color: var(--text-color);
    font-size: 18px;
}

.popup-container-error i {
    font-size: 30px;
}

.close-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;

    color: #ffffff;
    transition: color 0.2s ease;
    transition: 0.5s;
}

.icon-close {
    font-size: 23px !important;
}

.close-icon:hover {
    color: rgb(211, 0, 0);
}

/* Info Pop-up */

#info-popup,
#infoPopupSterne {
    display: none;
    justify-content: center;
    flex-direction: column;
    width: 50%;
    animation: flip-in-hor-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.info-popup i {
    font-size: 30px;
}

.popup-container-info {
    position: relative;
    background-color: rgba(62, 62, 62, 0.877);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    border-radius: 12px;
    text-align: center;
    color: var(--text-color);
    font-size: 18px;
}

.popup-container-info a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    width: 100%;
}

.popup-container-info i {
    font-size: 30px;
}

/*Spracheingabe Pop-up*/
.spracheingabe-popup-overlay {
    background-color: rgba(0, 0, 0, 0.733);
    height: 100vh;
    width: 100vw;
    position: fixed;
    display: none;
    justify-content: center;
    animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    z-index: 7;
}

#overlay-fremdsprache {
    z-index: 8;
}

#spracheingabe-popup {
    display: none;
    justify-content: center;
    flex-direction: column;
    width: 50%;
    animation: flip-in-hor-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 1s;
}

.popup-container-sprache {
    background-color: rgba(114, 61, 1, 0.918);
    padding: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    border-radius: 12px;
    text-align: center;
    color: var(--text-color);
    font-size: 18px;
}

.popup-container-sprache i {
    font-size: 35px;
    margin-left: 45%;
}

.popup-container-sprache input {
    padding: 13px 8px;
    border-radius: 10px;
    border: 0.5px solid white;
    color: white;
    font-size: 20px;
    font-weight: 600;
    background-color: transparent;

}

.popup-container-sprache input:focus {
    outline: 2px solid white;
    transition: 0.1s;
}

/* Overlay für Info und error Pop-up */
.error-popup-overlay,
.info-popup-overlay {
    background-color: rgba(0, 0, 0, 0.733);
    height: 100vh;
    width: 100vw;
    position: fixed;
    display: none;
    justify-content: center;
    animation: fade-in 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    z-index: 999;
}

.button-schließen,
.button-eingaben-speichern {
    height: 100%;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    gap: 10px;
    border: none;
    border-radius: 15px;
    color: rgb(0, 0, 0);
    transition: 0.5s;
    background-color: white;
    user-select: none;
}

.button-eingaben-speichern {
    display: none;
    background-color: rgb(89, 77, 70);
    color: var(--text-color);
}

#popupFremdsprache,
#popupMuttersprache {
    display: none;
    justify-content: center;
    flex-direction: column;
    width: 60%;
    animation: flip-in-hor-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.733);
    height: 100vh;
    width: 100vw;
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fade-in 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    z-index: 7;
}

.popup-container {
    position: relative;
    background-color: rgb(41, 41, 41);
    padding: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    border-radius: 12px;
    text-align: center;
}

.popup-container input {
    border-radius: 10px;
    border: none;
    padding: 10px 8px;
    background-color: transparent;
    border: 1px solid rgb(255, 255, 255);
    transition: 0.5s;
    font-size: 20px;
    color: var(--text-color);
}

#popupHeadingTextMuttersprache {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 90vw;
}

.popup-container input:hover {
    transform: scale(1.03);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.438);
}

.popup-container input:focus {
    outline: none;
}

.button-container-popup {
    display: flex;
    justify-content: center;
    gap: 5%;
}

.button-container-popup button {
    border-radius: 20px;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    color: var(--text-color);
}

.heading-popup {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
}

.button-speichern {
    background-color: rgb(189, 85, 0);
    transition: 0.5s;
    width: 50%;
}

.button-abrechen {
    background-color: rgb(100, 100, 100);
    transition: 0.5s;
    width: 50%;
}

.button-bearbeiten {
    background-color: green;
    transition: 0.5s;
}

.button-abrechen:hover {
    background-color: rgb(49, 49, 49);
    cursor: pointer;
}

.button-speichern:hover {
    background-color: rgb(255, 115, 0);
    cursor: pointer;
}

.button-bearbeiten:hover {
    background-color: rgb(0, 184, 0);
    cursor: pointer;
}

.woerter-abfrage-container {
    display: none;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    width: 100%;
    height: 100%;
    margin-top: 50px;
    animation: slide-in-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.karte-container {
    height: 30rem;
    width: 22rem;
    border-radius: 25px;
    text-align: center;
    padding: 10px 20px;
    position: relative;
    transition: 0.5s;
}

.karte-container:hover {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.438);
}

.karte-container h1 {
    text-decoration: underline;
    text-underline-offset: 3px;
    user-select: none;
}

.inhalt-wort-abfrage {
    font-weight: 500;
    font-size: 30px;
}

.karte-eingabe {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    min-width: 0;
}

.karte-eingabe input {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 18px;
    padding: 0 8px;
    height: 55px;
    border: none;
    background-color: rgb(255, 255, 255);
    color: rgb(46, 46, 46);
    outline: none;
    box-sizing: border-box;
}

.karte-eingabe input:focus {
    background-color: white;
}

.karte-eingabe input::placeholder {
    color: rgba(0, 0, 0, 0.377);
}

.karte-eingabe button {
    flex: 0 0 55px;
    height: 55px;
    font-size: 26px;
    border: none;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 20px 0;
}

.karte-eingabe button:hover {
    color: orange;
    cursor: pointer;
}


.karte-frage-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 100px;
}

.karte-button-container {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.karte-überspringen-button {
    padding: 7px 12px;
    font-size: 18px;
    background-color: rgb(0, 119, 255);
    border: none;
    color: var(--text-color);
    border-radius: 15px;
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
    transition: 0.5s;
    animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

#wrong-icon {
    display: none;
    margin-top: 10px;
    font-size: 25px;
}

.status-abfrage {
    gap: 5px;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both 0.2s;
}

.checkbox-container hr {
    margin: 15px 0;
}

/* Verstecke die originale Checkbox */
.custom-checkbox input {
    display: none;
}

/* Das neue "Checkbox"-Design */
.custom-checkbox .checkmark {
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    background-color: transparent;
    transition: 0.5s;
}

/* Häkchen anzeigen, wenn aktiviert */
.custom-checkbox input:checked+.checkmark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-52%, -58%) rotate(45deg);
}

/* Hintergrund ändern, wenn aktiviert */
.custom-checkbox input:checked+.checkmark {
    background-color: #007b8b;
    border-color: #007b8b;
}

.karten-timeline-container {
    position: absolute;
    top: 82px;
    background-color: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    height: fit-content;
    font-size: 20px;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    z-index: 2;
    transition: 0.5s;
    animation: slide-in-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 1s;
}

.timeline-container {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 96vw;
    align-items: center;
    max-height: 65px;
    padding: 5px 0;
    transition: 0.5s;
}

.timeline-haken {
    color: rgb(0, 189, 0);
    padding-left: 6px;
    font-size: 22px;
}

.timeline-x {
    color: rgb(255, 3, 3);
    padding-left: 5px;
}

.timeline-pfeil {
    color: var(--text-color);
    padding-left: 5px;
}

.settings-popup-overlay {
    background-color: rgba(0, 0, 0, 0.733);
    height: 100vh;
    width: 100vw;
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    z-index: 7;
}

#settings-popup {
    display: none;
    justify-content: center;
    flex-direction: column;
    width: 50%;
    animation: flip-in-hor-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 1s;
}

.popup-container-setting {
    background-color: rgb(37, 37, 37);
    padding: 30px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 15px;
    border-radius: 12px;
    color: var(--text-color);
    font-size: 18px;
}

.popup-container-setting i {
    font-size: 35px;
    margin-left: 45%;
}

.zahnrad{
    animation: spin 5s linear infinite;
}

.letze-eingabe-button-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.letze-eingabe-button-container button {
    background-color: #00708b;
    color: var(--text-color);
    border: none;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 8px;
    transition: 0.5s;
}

.letze-eingabe-button-container button:hover {
    background-color: #005469;
    cursor: pointer;
}

.meldung-container details {
    color: var(--text-color);
    font-size: 20px;
    text-align: center;
}

.meldung-container summary {
    user-select: none;
    margin-bottom: 10px;
    font-weight: 600;
    animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both 1s;
}

.fehler-anzeigen-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fehler-anzeigen-container span {
    line-height: 30px;
}

.fehler-anzeigen-container button {
    text-align: center;
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 15px;
    border: none;
    color: var(--text-color);
    background-color: rgb(145, 70, 0);
    font-size: 18px;
}

.settings-bemerkung {
    font-size: 14px;
    color: rgb(170, 170, 170);
}

.site-settings-button-container {
    display: grid;
    align-items: center;
    flex-direction: row;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.site-settings-button-container i {
    font-size: 15px;
    margin-left: 0;
}

.site-settings-button-container button {
    color: white;
    padding: 9px 5px;
    border-radius: 16px;
    border: none;
    font-size: 15px;
    transition: 0.5s;
}

.site-settings-button-container button:hover {
    background-color: rgb(71, 71, 71);
    cursor: pointer;
}

.alle-deaktivieren-button {
    background-color: rgb(50, 79, 134);
}

.alle-sterne-loeschen-button {
    background-color: #005469;
}

.alle-sprache-loeschen-button {
    background-color: #136d5b;
}

.bibliothek-overlay {
    background-color: rgba(0, 0, 0, 0.733);
    height: 100vh;
    width: 100vw;
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    z-index: 7;
}

#bibliothekPopup {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    animation: flip-in-hor-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 1s;
}

.popup-container-bibliothek {
    background-color: rgba(35, 35, 35, 0.963);
    padding: 15px 30px 30px 30px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    border-radius: 12px;
    color: var(--text-color);
    font-size: 18px;
}

.bibliothek-header {
    display: flex;
    justify-content: center;
    font-size: 35px;
}

.bibliothek-header i {
    margin-right: 10px;
}

.bibliothek-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.bibliothek-item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    border: 1px solid white;
    border-radius: 13px;
    background-color: rgba(16, 16, 16, 0.764);
    padding: 20px 10px;
}

.vokabel-liste-ul {
    list-style-position: inside;
    text-align: start;
    padding-left: 20px;
    line-height: 20px;
}

.bibliothek-item button {
    background-color: rgb(12, 139, 0);
    color: var(--text-color);
    padding: 8px 13px;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 16px;
    width: 70%;
    transition: 0.5s;
}

.bibliothek-item-header {
    display: flex;
    justify-content: center;
    font-size: 25px;
}

.bibliothek-item-beschreibung {
    text-align: center;
    font-size: 16px;
}

.bibliothek-kategorie {
    font-size: 20px;
    display: flex;
    align-items: center;
    /* Text & Linien mittig ausrichten */
    color: var(--text-color);
    padding: 10px;
    gap: 10px;
    /* Abstand Text ↔ Linie */
}

.bibliothek-kategorie::before,
.bibliothek-kategorie::after {
    content: "";
    flex: 1;
    /* Linie füllt links & rechts den Platz */
    border-top: 6px solid #f6a400;
    border-radius: 5px;
}


.home-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100%;
}


.home-over {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 25%;
    height: 100%;
    padding: 5px;
    position: relative;
}

.edit-liste {
    font-size: 13px;
    padding-left: 5px;
}

.vokabel-listen-container {
    color: var(--text-color);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.vokabel-listen-container button i {
    transition: 0.5s;
}

.listen {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vokabel-listen-container h1 {
    line-height: 0px;
}

.vokabel-liste button {
    word-break: break-word;
    background-color: var(--body-color);
    color: var(--text-color);
    border: none;
    border: 2px solid var(--border-color);
    font-size: 25px;
    font-weight: 600;
    padding: 0px 20px;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    max-height: 100px;
    display: flex;
    animation: flip-in-hor-bottom 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 2s;
}

.list-button-first {
    border-radius: 10px 0 0 10px;
    border-right: none !important;
}

.list-button-last {
    border-left: none !important;
    border-radius: 0 10px 10px 0;
}

.vokabel-listen-container button:hover i {
    transform: scale(1.20);
    cursor: pointer;
}

.vokabel-listen-container button:hover {
    cursor: pointer;
}

.arrow-hide-container {
    user-select: none;
    padding: 120px;
    overflow: hidden;
    border-radius: 15px;
    animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both 1s;
}

.arrow-up-container {
    opacity: 1;
    position: absolute;
    bottom: -12.5rem;
    padding: 0;
    animation: arrow-center-loop 1.3s infinite linear;
}

.arrow-up-container img {
    width: 13rem;
    height: auto;
}

.arrow-br-left-up-container {
    opacity: 0.3;
    position: absolute;
    bottom: -14rem;
    left: -14rem;
    padding: 0;
    animation: arrow-br-left-up-loop 0.8s infinite linear;
}

.arrow-br-left-up-container img {
    width: 18rem;
    height: auto;
}

.arrow-br-right-up-container {
    opacity: 0.3;
    position: absolute;
    bottom: -13.5rem;
    right: -13rem;
    padding: 0;
    animation: arrow-br-right-up-loop 0.8s infinite linear;
}

.arrow-br-right-up-container img {
    width: 14.5rem;
    height: auto;
}

.arrow-down-container {
    opacity: 0.5;
    position: absolute;
    top: -13.5rem;
    padding: 0;
    animation: arrow-center-loop-2 1s infinite linear;
}

.arrow-down-container img {
    width: 14.5rem;
    height: auto;
}

.arrow-br-right-down-container {
    opacity: 0.8;
    position: absolute;
    top: -13rem;
    right: -13rem;
    padding: 0;
    animation: arrow-br-right-down-loop 1.4s infinite linear;
}

.arrow-br-right-down-container img {
    width: 17.5rem;
    height: auto;
}

.arrow-br-left-down-container {
    opacity: 0.6;
    position: absolute;
    top: -10.5rem;
    left: -10.5rem;
    padding: 0;
    animation: arrow-br-left-down-loop 1.1s infinite linear;
}

.arrow-br-left-down-container img {
    width: 12.5rem;
    height: auto;
}

/*Listen Eingabe Pop-up*/
.liste-eingabe-popup-overlay,
.liste-eingabe-vokabeln-popup-overlay {
    background-color: rgba(0, 0, 0, 0.733);
    height: 100vh;
    width: 100vw;
    position: fixed;
    display: none;
    justify-content: center;
    animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    z-index: 7;
}

#listeEingabePopup,
#listeEingabeVokabelnPopup {
    display: none;
    justify-content: center;
    flex-direction: column;
    position: relative;
    width: 50%;
    animation: flip-in-hor-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 1s;
}

.popup-container-liste-eingabe,
.popup-container-liste-vokabeln-eingabe {
    background-color: rgba(37, 37, 37, 0.962);
    padding: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    gap: 15px;
    border-radius: 12px;
    text-align: center;
    color: white;
    font-size: 18px;
}

.popup-container-liste-eingabe i,
.popup-container-liste-vokabeln-eingabe i {
    font-size: 35px;
    margin-left: 45%;
}

.popup-container-liste-eingabe input,
.popup-container-liste-vokabeln-eingabe input {
    padding: 13px 8px;
    border-radius: 10px;
    border: 0.5px solid white;
    color: white;
    font-size: 20px;
    background-color: transparent;

}

.popup-container-liste-eingabe:focus,
.popup-container-liste-vokabeln-eingabe:focus {
    outline: 2px solid white;
    transition: 0.1s;
}

#saveListButton1,
#saveListButton2,
#saveListButton3 {
    display: none;
}

.signal-container {
    background-color: rgba(49, 49, 49, 0.84);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99;
    position: fixed;
    bottom: 10px;
    width: 30%;
    display: none;
    justify-content: center;
    padding: 9px;
    border-radius: 10px;
    animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 0.5s;
}

.signal-container-inhalt {
    display: flex;
    align-items: center;
    height: 100%;
    color: white;
    font-size: 27px;
}

#signalContainerIcon {
    position: absolute;
    left: 20px;
    font-size: 30px;
}

#signalContainerTextFehler{
    padding-left: 10px;
    font-size: 20px;
    color: rgb(168, 168, 168);
}

@media only screen and (max-width: 780px) {

    #error-popup,
    #errorPopupListe,
    #info-popup,
    #infoPopupSterne {
        width: 93%;
    }

    #popupMuttersprache,
    #popupFremdsprache,
    #spracheingabe-popup,
    #settings-popup,
    #bibliothekPopup,
    #listeEingabePopup,
    #listeEingabeVokabelnPopup {
        width: 98%;
    }

    .meldung {
        font-size: 30px;
    }

    .meldung-zwischen {
        font-size: 20px;
    }

    .button-container-popup {
        flex-direction: column;
        gap: 20px;
    }

    .button-abrechen,
    .button-speichern {
        width: 100%;
    }

    .karte-container {
        height: 28rem;
        width: 17rem;
        box-shadow: none !important;
    }

    .karte-container h1 {
        font-size: 30px;
    }

    .button-container {
        flex-direction: column;
        gap: 20px !important;
    }

    .karte-eingabe input {
        font-size: 16px;
        height: 60px;
    }

    .karte-eingabe button {
        height: 60px;
        width: 50px;
        font-size: 28px;
    }

    .karte-frage-container {
        margin-top: 50px;
    }

    .karten-timeline-container {
        top: 74px;
    }

    .abfrage-abrechen {
        position: absolute;
        width: 90%;
        bottom: 20px;
        height: 2.6rem;
        left: 5%;
    }

    .karte-überspringen-button {
        padding: 7px 12px;
        font-size: 16px;
    }

    .errungenschaften-container {
        font-size: 23px;
    }

    .sterne i {
        font-size: 25px;
    }

    .site-settings-button-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .bibliothek-main {
        grid-template-columns: repeat(1, 1fr);
    }

    .last-Vokabeln-button-home {
        font-size: 20px;
        white-space: nowrap;
    }

    .starten-button,
    .los-button {
        font-size: 50px;
    }

    .arrow-br-left-down-container {
        display: none;
    }

    .arrow-br-right-down-container {
        display: none;
    }

    .arrow-br-left-up-container {
        display: none;
    }

    .arrow-br-right-up-container {
        display: none;
    }

    .home-over {
        flex-direction: column-reverse;
        gap: 50px;
        padding-bottom: 5rem;
    }

    .arrow-hide-container {
        width: -webkit-fill-available;
    }

    .vokabel-liste button {
        font-size: 20px;
        font-weight: 600;
    }

    .signal-container{
        width: 90%;
    }
}