@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@600&display=swap');
:root {
    /* Farben */
    --background-color: #181b22;
    --line-color: #465565;
    --background-block-color: #444b55;
    --button-blue: #366bba;
    --button-shadow: #2a549c;
    --disabled-background: #515a68;
    --disabled-shadow: #323b48;
    

    /* Schriftgrößen */
    --font-size-header: 1.9rem;
    --font-size-question: 1.5rem;
    --font-size-awnsers: 1.3rem;
    --font-size-button: 1.6rem;
    --icon-size:2.3em;
}

.next-button {
    background-color: var(--button-blue);
    color: white;
    border: none;
    padding: 0.7rem;
    border-radius: 2rem;
    font-size: 1.6rem;
    font-family: "Dosis", sans-serif;
    box-shadow: 0px 6px 0px 0px var(--button-shadow);
}

#next-button {
    background-color: var(--button-blue);
    color: white;
    border: none;
    padding: 0.7rem;
    border-radius: 2rem;
    font-size: 1.6rem;
    font-family: "Dosis", sans-serif;
    box-shadow: 0px 6px 0px 0px var(--button-shadow);
}



body {
    font-family: "Dosis", sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
}

html{
    -ms-overflow-style: none;  /* IE & Edge */
    scrollbar-width: none;  /* Firefox */
}

body{
    -ms-overflow-style: none;  /* IE & Edge */
    scrollbar-width: none;  /* Firefox */
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

#iframe{
    -ms-overflow-style: none;  /* IE & Edge */
    scrollbar-width: none;  /* Firefox */
}

#iframe::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.global-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0.5;
}

.global-modal {
    transform-origin: top left;
    font-family: "Dosis", sans-serif;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--background-color);
    border: 4px solid var(--line-color);
    padding: 0.8rem;
    padding-bottom:1.5rem;
    padding-top:1.1rem;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 400px;
    z-index: 1000;
    text-align: center;
    font-size: 1rem;
    color: rgb(120, 146, 158);
}

.global-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.7rem;
    padding-left:0.5rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.global-modal-header a{
    color: white;
}


.global-close {
    cursor: pointer;
    font-size: 1.6rem;
    color: #555;
    height: 2.5rem;
    width: 2.5rem;
    transition: scale 0.15s cubic-bezier(0.42, 0, 0.23, 2.12);
}

.global-modal-content {
    margin-top: 1rem;
}




.global-modal-footer {
    margin-top: 0.3rem;
}

.global-ok-button {
    background-color: #f1730c;
    color: white;
    border: none;
    padding: 0.7rem;
    border-radius: 2rem;
    font-size: 1.3rem;
    font-family: "Dosis", sans-serif;
    box-shadow: 0px 6px 0px 0px rgb(146, 65, 7);
    width: 95%;
    margin-top: 1rem;
}

.global-ok-button:active {
    box-shadow: none;
    transform: translateY(6px);
}

html, body {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

::-webkit-scrollbar {
    display: none; /* Safari, iOS, Chrome */
}

* {
    user-select: none;  /* Verhindert Text- und Bildelementauswahl */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

button, a, div {
    touch-action: manipulation;
}

button {
    -webkit-touch-callout: none; /* Verhindert langes Halten (iOS) */
    -webkit-user-select: none;   /* Verhindert Textauswahl */
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}


button {
    cursor: pointer;
}

img{
    pointer-events: auto; /* Interaktiv lassen */
    user-select: none; /* Verhindert Markieren */
    -webkit-user-drag: none;
}

img {
    -webkit-user-select: none;
    user-select: none;
    pointer-events: auto;
  }

  img {
    -webkit-touch-callout: none; /* verhindert das iOS-Bild-Menü */
  }

  main{
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

main::-webkit-scrollbar {
    display: none; /* Safari, iOS, Chrome */
}

*::-webkit-scrollbar {
    display: none; /* Safari, iOS, Chrome */
}
