html, body {
    height: 100vh; /* Fallback für alte Browser */
    height: 100dvh; /* Die magische Lösung für Mobile */
    margin: 0;
    background-color: #202024;
    overflow: hidden; /* Verhindert das "Wackeln" zusätzlich */
}

:root {
    color-scheme: dark;
    --highlight_color: #3bb883;
    --text_first_color: #fff;
    --text_second_color: #b8b8bb;

    --background_main: #1a191b;
    --backgroundcolor_one: #161618;
    --backgroundcolor_two: #1b1b1f;
}

a {
    text-decoration: none;
    color: inherit;
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome and Opera */
}

.nopoint--event {
    cursor: not-allowed;
    pointer-events: none;
}


.disabled {
    pointer-events: none;
}

.disabled_grey {
    opacity: 0.4;
    pointer-events: none !important;
    filter: grayscale(1) !important;
}

::-webkit-scrollbar {

    width: 0px;
    /* Breite des Scrollbalkens */

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

/* Hintergrundfarbe des Scrollbalkenbereichs */
::-webkit-scrollbar-track {
    background: #444444;
    /* Hintergrundfarbe des Scrollbalkenbereichs */
}

/* Farbe des Scrollbalkens */
::-webkit-scrollbar-thumb {
    background: #464646;
    /* Farbe des Scrollbalkens */
}

/* Farbe des Scrollbalkens bei Hover */
::-webkit-scrollbar-thumb:hover {
    background: #444444;
    /* Farbe des Scrollbalkens bei Hover */
}



.tooltip {
    z-index: 8;
    display: none;
    position: absolute;
    background-color: #252027ef;
    border: 1px solid #5e4870;
    max-width: 300px;
    border-radius: 5px;
    padding: 8px;

    color: #fff;
    font-size: 13px;
    letter-spacing: 0.2px;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    text-align: left;
}

.tooltip-arrow {
    display: none;
}

.tooltip-inner {
    width: auto !important;
    padding: 10px !important;
    text-align: left !important;
    white-space: nowrap;
    background-color: #000000a2 !important;
    border: 1px solid #6d6d6d;
}

#login_centered {
    z-index: 1;
    
    position: fixed;
    inset: 0;
    
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
#login_container {
    z-index: 3;

    position: relative;
    min-height: 0;
    width: 100%;

    min-width: 320px;
    max-width: 380px;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    box-sizing: border-box;
}

#login_logo {
    z-index: 4;
    position: relative;
    margin-bottom: 20px;

    height: 70px;
    width: 170px;

    background-image: url(/img/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 170px 70px;
}


.login_button {

    z-index: 4;
    position: relative;
    height: 50px;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;

    margin-bottom: 10px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    box-sizing: border-box;

    background: rgba(22, 22, 22, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari */
    border: 1px solid #4d4d4d;
    border-radius: 25px;

    transition: all ease-in-out 0.2s;
}

.login_button:hover {
    cursor: pointer;
    filter: brightness(1.2);

}

.login_button--inactive {
pointer-events: none;
opacity: 0.5;
filter: grayscale(1);
}

.login_button_icon {
    z-index: 4;
    position: relative;
    margin-right: 10px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    box-sizing: border-box;

    height: 24px;
    width: 24px;

    background-image: url(/img/login_twitch_icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
}

.login_button_text {
    z-index: 4;
    position: relative;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    box-sizing: border-box;

    text-align: center;
    font-size: 15px;
    font-family: "SN Pro", sans-serif;
    color: #ffffff;
    font-style: 900; 

}

.login_signup {
    z-index: 4;
    position: relative;
    height: 50px;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;

    margin-bottom: 10px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    box-sizing: border-box;
        border-radius: 25px;

    transition: all ease-in-out 0.2s;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.login_signup:hover {
    cursor: pointer;
    filter: brightness(1.2);

}

.login_signup--inactive {
pointer-events: none;
opacity: 0.5;
filter: grayscale(1);
text-decoration: line-through;
}


.login_signup_text {
    z-index: 4;
    position: relative;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    box-sizing: border-box;

    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    font-size: 13px;
    font-family: "SN Pro", sans-serif;
    color: #b6b6b6;
    font-style: 900; 

}

#login_subtitle {
     z-index: 4;
    position: relative;
    margin-top: 80px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    box-sizing: border-box;

    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    font-size: 13px;
    font-family: "SN Pro", sans-serif;

    background: linear-gradient(45deg, #db229d, #63397a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: bold;

}