html, body {
height: 100vh;
  margin: 0;
  overflow: hidden;

      background-color: #16151b;
}

:root {
    color-scheme: dark;
    --highlight_color: #3bb883;
    --text_first_color: #fff;
    --text_second_color: #b8b8bb;

    --background_main: #1f1f1f;
    --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;
}

#world_box {
    position: relative;
    z-index: 1;
    
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    box-sizing: border-box;    

    height: 100%;
    width: 100%;

}


#left_box {
    position: relative;
    z-index: 3;
    
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;    

    height: 100vh;

    background-color: #16151b;
    transition: width 0.2s ease-in-out;
}

.left_box--normal {
     width: 320px;   
}

.left_box--small {
     width: 70px;   
}


#task_logo {
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 4;

    height: 90px;
    width: 100%;

    flex-shrink: 0;

    background-repeat: no-repeat;
    background-position: center;

    box-sizing: border-box;
}

.task_logo--normal {
    background-image: url(/img/task_logo.png);
    background-size: 160px 90px;
}

.task_logo--small {
    background-image: url(/img/task_logo_small.png);
    background-size: 70px 90px;
}


#menu_box {
    
    position: relative;
    z-index: 4;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;    

    overflow: hidden;
    height: 100%;
    width: 100%;
}

#menu_size_button {
    position: relative;
    z-index: 4;

    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;    
    padding: 0px 20px;
    border-radius: 5px;

    flex-shrink: 0;

    height: 40px;
    width: calc(100% - 20px);
    
    background-color: #201f25;
    border: 1px solid #35333b;

    transition: all ease-in-out 0.2s;
}

#menu_size_button:hover {
    cursor: pointer;
    filter: brightness(1.2);
    background-color: #1a1a1f;
}

#menu_size--icon {
    position: relative;
    z-index: 4;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;  
    
    flex-shrink: 0;

    height: 20px;
    width: 20px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;

    transition: all ease-in-out 0.2s;

}


.menu_size--icon--normal { 
    background-image: url(/img/menu_size_small_icon.png);
}

.menu_size--icon--small {
background-image: url(/img/menu_size_normal_icon.png);
}

#menu_size--text {
    margin-left: 10px;
    position: relative;
    z-index: 4;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;    

    width: fit-content;

    color:#ffffff;
    font-size: 14px;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
}


#menu_scroll_container {
    position: relative;
    z-index: 4;

    height: 100%;
    width: 100%;

    overflow-y: auto;
}

.menu_spacer {
    position: relative;
    z-index: 4;

    height: 20px;
    width: 100%;
}

.menu_titel_container {
    margin-top: 10px;
    position: relative;
    z-index: 4;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;    
    padding: 0px 20px;

    height: 24px;
    width: 100%;
}

.menu_titel_container--small {
    justify-content: center !important;
}

.menu_titel--icon {
    position: relative;
    z-index: 4;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;   
    
        flex-shrink: 0;

    height: 10px;
    width: 10px;
    border-radius: 50%;

    background-color:#616161;

}

.menu_titel--text {
    margin-left: 10px;
    position: relative;
    z-index: 4;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;    

    width: fit-content;

    color:#616161;
    font-size: 13px;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.menu_button {
    position: relative;
    z-index: 4;

    margin: 4px 10px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;    
    padding: 0 14px;

    height: 44px;
    width: calc(100% - 20px);

    background-color: #18171d;
    border: 1px solid #29272f;
    border-radius: 6px;

    transition:
        color ease-in-out 0.2s,
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s,
        box-shadow ease-in-out 0.2s,
        transform ease-in-out 0.2s;
}

.menu_button:hover { 
    cursor: pointer;
    background-color: #1d1c22;
    border-color: #3d3a45;
    transform: translateX(2px);
}

.menu_button:hover .menu_button--text { color: #ffac29; }

.menu_button--active {
    background-color: #29251c;
    border-color: #6b5220;
    box-shadow: inset 3px 0 0 #dda222;
}

.menu_button--active .menu_button--text {
    color: #dda222;
}

.menu_button--primary-play {
    height: 64px;
    padding: 7px 14px;

    flex-direction: column;
    justify-content: center;
    gap: 3px;

    background-color: #1a191f;
    border-color: #34313a;
    box-shadow: none;
}

.menu_button--primary-play:hover {
    background-color: #1d1c22;
    border-color: #55482d;
    box-shadow: 0 0 12px rgba(221, 162, 34, 0.07);
}

.menu_button--primary-play.menu_button--active {
    background-color: #29251c;
    border-color: #6b5220;
    box-shadow: inset 3px 0 0 #dda222;
}

.menu_button--primary-play.menu_button--active .menu_button--text {
    color: #dda222;
}

.menu_play_button--main {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-1px);
}

.menu_play_button--main .menu_button--text {
    margin-left: 8px;
}

.menu_play_button--status {
    min-height: 14px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    color: #85818c;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 14px;
    text-align: center;

    transition: color ease-in-out 0.2s;
}

.menu_play_button--status[data-state="group"] {
    color: #aaa7b0;
}

.menu_play_button--status[data-state="playing"] {
    color: #dda222;
}

.menu_play_button--status[data-state="finished"] {
    color: #b9a574;
}

#menu_play_button_status--count {
    color: #67d786;
    font-weight: 700;
}

.menu_play_button--status.menu_play_button--full #menu_play_button_status--count {
    color: #dda222;
}

.menu_play_button--count_hidden {
    display: none !important;
}

.menu_button--small {
    margin: 4px auto;
    padding: 0;

    width: 46px;

    justify-content: center !important;
}

.menu_button--primary-play.menu_button--small {
    height: 46px;
    gap: 0;
}

#left_box[data-size="small"] .menu_play_button--status {
    display: none;
}

#left_box[data-size="small"] .menu_play_button--main {
    transform: none;
}



.menu_button--icon {
    position: relative;
    z-index: 4;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;    

    height: 20px;
    width: 20px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;

    transition: all ease-in-out 0.2s;

}



.menu_button--text {
    margin-left: 10px;
    position: relative;
    z-index: 4;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;    

    width: fit-content;

    color:#ffffff;
    font-size: 15px;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;

    transition: color 0.2s ease-in-out;

}

#menu_server_status_box {
    position: relative;
    z-index: 4;
    padding: 5px;
    margin-bottom: 5px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;    

    min-height: 0px;
    width: 100%;

    transition: all 0.2s ease-in-out;
}

#menu_server_status_container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 5px;

    height: fit-content;
    width: 100%;
    border-radius: 5px;
    background-color: #1d1c24;
}

#menu_server_status--icon {
    display: none;
    position: relative;
    height: 14px;
    width: 14px;
    border-radius: 5px;
}

.menu_server_status--icon_online {
    background-color:#3bb883;
}

.menu_server_status--icon_offline {
    background-color:#b83b3b;
}

#menu_server_status--titel {
    font-size: 14px;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;  
    margin-right: 10px;
}

#menu_server_status--text {
    font-size: 14px;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;  
}

.menu_server_status--text_online {
    color:#3bb883;
}

.menu_server_status--text_offline {
    color:#b83b3b;  
}

#menu_account_container {
    position: relative;
    z-index: 4;

    display: flex;

    box-sizing: border-box;    
    align-items: flex-start;
    justify-content: flex-start;

    flex-shrink: 0;

    width: 100%;

    background-color: #1d1c24;
}

.menu_account_container--normal {
    height: 70px;
    flex-direction: row;
    flex-wrap: nowrap;
}

.menu_account_container--small {
    height: 140px;
    flex-direction: column;
    flex-wrap: wrap;
}

#menu_account_container--avatar {
    margin-top: 10px;
    margin-left: 10px;
    position: absolute;
    z-index: 4;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;    

    height: 50px;
    width: 50px;

    border-radius: 50%;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    background-color: #0c0c0c;

    transition: all 0.2s ease-in-out;
}

#menu_account_container--text {
    top: 17px;
    left: 70px;
    position: relative;
    z-index: 4;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;

    color:#fff;
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;    
}

#menu_account_container--role {
    top: 35px;
    left: 70px;
    position: absolute;
    z-index: 4;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;

    font-size: 14px;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;    
}

.menu_account_role--registered {
    color: #3bb883;
}

.menu_account_role--moderator {
    color: #a970ff;
}

.menu_account_role--admin {
    color: #dda222;
}

#menu_account_container--logout_button {
    z-index: 4;
        position: absolute;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;

    height: 40px;
    width: 40px;

    background-color: #2b2a33;
    border: 1px solid #373642;
    border-radius: 5px;

    background-image: url(/img/menu_logout_icon.png);
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 24px;

    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);

}

#menu_account_container--logout_button:hover {
    cursor: pointer;
    filter: brightness(1.2);
}

.menu_account_container--logout_button--normal {
    top: 15px;
    right: 10px;

    transition: 0.2s all ease-in-out;
}

.menu_account_container--logout_button--small {
    top: 75px;
    right: 15px;

}


#right_box {
    flex: 1 1 0;
    width: auto;
    min-width: 0;

    box-sizing: border-box;
    overflow: hidden;
    overflow-y: auto;
}



#right_page_titel_container {
    position: relative;
    z-index: 3;

    overflow: hidden;

    height: 60px;
    width: 100%;
    padding: 20px;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;

    background-color: #16151b;
}

#right_page_titel_container--text {
    color: #ffffff;
    font-size: 19px;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 900;
}

#right_page_inner {
    position: relative;
    z-index: 5;

    min-height: calc(100vh - 60px);
    width: 100%;

    padding: 10px;
    min-width: 0;;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    box-sizing: border-box;

    background-color: #111014;


    -webkit-border-top-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    border-top-left-radius: 10px;   

}


#faq_page {
    width: 100%;
    max-width: 1180px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    color: #ffffff;
    font-family: "Manrope", sans-serif;
}

.faq_intro {
    width: 100%;
    padding: 23px 25px;

    box-sizing: border-box;

    background-color: #16151b;
    border: 1px solid #2d2b33;
    border-radius: 7px;
}

.faq_intro_title {
    margin: 0;

    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.faq_intro_text {
    max-width: 720px;
    margin: 8px 0 0;

    color: #aaa6b0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
}

.faq_panel {
    width: 100%;
    padding: 8px 18px;

    overflow: hidden;
    box-sizing: border-box;

    background-color: #16151b;
    border: 1px solid #2d2b33;
    border-radius: 7px;
}

.faq_list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq_container {
    position: relative;

    width: 100%;
    min-width: 0;

    overflow: hidden;

    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #2d2b33;
    border-radius: 0;

    transition:
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s;
}

.faq_container:hover,
.faq_container--open {
    background-color: #1a191f;
}

.faq_container--open {
    box-shadow: inset 3px 0 0 #dda222;
}

.faq_container:last-child {
    border-bottom: 0;
}

.faq_container_top_box {
    min-height: 62px;
    width: 100%;
    padding: 0 12px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    color: inherit;
    background: transparent;
    border: 0;
    outline: 0;

    box-sizing: border-box;
    cursor: pointer;
    text-align: left;
}

.faq_container_top_box:focus-visible {
    box-shadow:
        inset 0 0 0 2px
        rgba(221, 162, 34, 0.45);
}

.faq_container_titel {
    min-width: 0;

    color: #f1eff3;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.faq_container_arrow_icon {
    flex: 0 0 30px;

    height: 30px;
    width: 30px;

    background-color: #1c1b21;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;

    border: 1px solid #35323b;
    border-radius: 4px;

    transition:
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s;
}

.faq_container_arrow_icon--left {
    background-image:
        url(/img/menu_arrow_left_icon.png);
}

.faq_container_arrow_icon--bottom {
    background-color:
        rgba(221, 162, 34, 0.08);
    background-image:
        url(/img/menu_arrow_bottom_icon.png);
    border-color:
        rgba(221, 162, 34, 0.42);
}

.faq_container_bottom_box {
    width: auto;
    min-width: 0;
    margin: 0 12px;
    padding: 15px 1px 19px;

    display: none;

    color: #aaa6b0;
    border-top: 1px solid #2d2b33;

    box-sizing: border-box;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

@media (max-width: 650px) {
    .faq_intro {
        padding: 20px 18px;
    }

    .faq_intro_title {
        font-size: 20px;
    }

    .faq_panel {
        padding: 6px 10px;
    }

    .faq_container_top_box {
        min-height: 56px;
        padding: 0 11px;
    }

    .faq_container_bottom_box {
        margin: 0 11px;
    }
}


.overview_controls {
    position: relative;
    z-index: 4;
    margin-bottom: 15px;

    width: 100%;
    padding: 8px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    box-sizing: border-box;
    background-color: #16151b;
    border: 1px solid #24232a;
    border-radius: 5px;
}

.overview_filter_buttons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.overview_filter_button {
    min-height: 46px;
    padding: 0 16px;

    color: #a8a7ad;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 4px;

    font-family: "Manrope", sans-serif;
    font-size: 14px;

    cursor: pointer;
    transition:
        color ease-in-out 0.2s,
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s;
}

.overview_filter_button:hover {
    color: #ffffff;
    background-color: #201f25;
}

.overview_filter_button--active {
    color: #dda222;
    background-color: #29251c;
    border-color: #6b5220;
}

.overview_active_game {
    min-height: 46px;
    padding: 0 14px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 0 0 auto;

    background-color: #111014;
    border: 1px solid #34313a;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

.overview_active_game span {
    color: #77747e;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.overview_active_game strong {
    color: #dda222;
    font-size: 13px;
    font-weight: 800;
}


.overview_filter_buttons {
    flex-wrap: wrap;
}

.overview_filter_separator {
    height: 24px;
    width: 1px;
    margin: 0 5px;
    background-color: #35333b;
}



.overview_search {
    position: relative;
    width: 50%;
    max-width: 100%;
}

#overview_task_search {
    width: 100%;
    height: 46px;
    padding: 0 38px 0 12px;

    color: #ffffff;
    background-color: #111014;
    border: 1px solid #2b2a31;
    border-radius: 4px;
    outline: none;

    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    font-size: 13px;

    transition: border-color ease-in-out 0.2s;
}

#overview_task_search:focus {
    border-color: #dda222;
}

#overview_task_search_clear {
    position: absolute;
    top: 0;
    right: 0;

    height: 36px;
    width: 36px;

    display: none;
    align-items: center;
    justify-content: center;

    color: #85838c;
    background: transparent;
    border: 0;

    font-size: 20px;
    cursor: pointer;
}

#overview_task_search_clear:hover {
    color: #ffffff;
}

#overview_no_results {
    display: none;
    width: 100%;
    padding: 40px 20px;

    color: #77757e;
    text-align: center;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

@media (max-width: 700px) {
    .overview_controls {
        flex-direction: column;
        align-items: stretch;
    }

    .overview_filter_buttons {
        width: 100%;
    }

    .overview_active_game {
        width: 100%;
    }

    .overview_filter_button {
        flex: 1 1 0;
        padding: 0 8px;
    }

    .overview_search {
        width: 100%;
    }
}


#task_load_status {
    position: absolute;
    z-index: 10;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: none;
}

#task_loading_icon {
    height: 200px;
    width: 200px;

    object-fit: contain;
}

#task_load_trigger {
    width: 100%;
    height: 20px;
}

.task_grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;

    box-sizing: border-box;
}

.task_card {
    z-index: 3;
    position: relative;
    min-width: 0;
    height: 200px;
    padding: 20px;

    display: flex;
    flex-direction: column;

    background-color: #16151b;
    border: 1px solid transparent;
    border-radius: 6px;

    box-sizing: border-box;
    transition:
        transform 0.2s ease-in-out,
        border-color 0.2s ease-in-out,
        filter 0.2s ease-in-out;
}


.task_card[data-task-type="solo"] {
    border-bottom: 1px solid rgba(221, 162, 34, 0.55);
}


.task_card[data-task-type="solo"] .task_card_title {
    color: #dda222;
}

.task_card[data-task-type="point"] {
    border-bottom: 1px solid rgba(34, 184, 221, 0.55);
}


.task_card[data-task-type="point"] .task_card_title {
    color: #22a8dd;
}


.task_card[data-task-type="group"] {
    border-bottom: 1px solid rgba(235, 101, 247, 0.55);
}

.task_card[data-task-type="group"] .task_card_title {
    color: #da65f7;
}

.task_card--locked {
    border-color: transparent;
}

.task_card--unlocked {
    border-color: transparent;
}


.task_card_number {
    margin-bottom: 8px;

    color: #68666e;
    font-size: 11px;
    font-weight: 700;
    font-family: "Manrope", sans-serif;
}


.task_card_title {
    color: #ffac29;
    font-size: 14px;
    font-weight: 700;
    font-family: "Manrope", sans-serif;   
    margin-bottom: 10px;
}

.task_card_description {
     color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    font-family: "Manrope", sans-serif;   
}

.task_card--locked {
    height: 200px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #131217;
    border: 1px dashed #29272f;
}

.task_card--locked:hover {
    cursor: default;
    transform: none;
    filter: none;
}

.task_card_locked_icon {
    color: #34313b;
    font-size: 52px;
    font-weight: 800;
    font-family: "Manrope", sans-serif;

    user-select: none;
}

/* Dropdown-Box */
.overview_type_filter {
    position: relative;

    flex: 0 1 390px;
    min-width: 250px;
}


/* Eigener Pfeil */
.overview_type_filter::after {
    content: "";

    position: absolute;
    top: 50%;
    right: 15px;

    height: 7px;
    width: 7px;

    border-right: 2px solid #dda222;
    border-bottom: 2px solid #dda222;

    pointer-events: none;

    transform:
        translateY(-70%)
        rotate(45deg);

    transition: transform ease-in-out 0.2s;
}


/* Dropdown selbst */
#overview_task_type_filter {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    width: 100%;
    height: 40px;

    padding: 0 45px 0 14px;

    color: #ecebf0;
    background-color: #111014;

    border: 1px solid #302e37;
    border-radius: 5px;
    outline: none;

    box-sizing: border-box;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        color ease-in-out 0.2s,
        border-color ease-in-out 0.2s,
        background-color ease-in-out 0.2s,
        box-shadow ease-in-out 0.2s;
}

#overview_task_type_filter:hover {
    color: #ffffff;
    background-color: #19181e;
    border-color: #514226;
}

#overview_task_type_filter:focus {
    color: #ffffff;
    background-color: #19181e;
    border-color: #dda222;

    box-shadow:
        0 0 0 3px rgba(221, 162, 34, 0.12);
}


/* Aufgeklappte Auswahl */
#overview_task_type_filter option {
    color: #ffffff;
    background-color: #16151b;
}


/* Statusknöpfe daneben */
.overview_filter_buttons {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    gap: 5px;
}


/* Suche ganz nach rechts */
.overview_search {
    position: relative;

    flex: 0 1 320px;
    margin-left: auto;
}


/* Kleinere Bildschirme */
@media (max-width: 1000px) {
    .overview_controls {
        flex-wrap: wrap;
    }

    .overview_type_filter {
        flex: 1 1 350px;
    }

    .overview_search {
        flex: 1 1 280px;
        margin-left: 0;
    }
}


/* Smartphone */
@media (max-width: 650px) {
    .overview_controls {
        flex-direction: column;
        align-items: stretch;
    }

    .overview_type_filter,
    .overview_search {
        width: 100%;
        min-width: 0;
    }

    .overview_filter_buttons {
        width: 100%;
    }

    .overview_filter_button {
        flex: 1 1 0;
    }
}



.play_state--hidden {
    display: none !important;
}

#play_page {
    width: 100%;
    max-width: 1180px;
    min-width: 0;
}


/* =========================================
   GRUPPENBEREICHE
========================================= */

.play_section {
    width: 100%;
    margin-bottom: 18px;
    padding: 20px;

    box-sizing: border-box;

    background-color: #16151b;
    border: 1px solid #29272f;
    border-radius: 7px;
}


/* =========================================
   ÜBERSCHRIFTEN
========================================= */

.play_section_header {
    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.play_open_groups_heading {
    display: flex;
    align-items: center;
    gap: 12px;
}

.play_group_lobby_controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;

    margin-left: auto;
}

.play_section_title,
#play_group_name {
    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 900;
}

#play_open_group_count,
#play_group_member_count,
#play_group_status {
    color: #87848f;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
}


/* =========================================
   GRUPPE ERSTELLEN
========================================= */

#group_create_button {
    min-height: 42px;
    padding: 0 22px;

    color: #79dc94;
    background-color: #19181d;

    border: 1px solid #376e46;
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s,
        box-shadow ease-in-out 0.2s,
        transform ease-in-out 0.2s;
}

#group_create_button:hover {
    color: #a1edb5;
    background-color: #1d211f;
    border-color: #67d786;

    box-shadow: 0 0 15px rgba(66, 201, 102, 0.18);
    transform: translateY(-1px);
}

#group_create_button:disabled {
    color: #85828c;
    background-color: #28272d;
    border-color: #3c3a43;

    cursor: default;
    box-shadow: none;
    transform: none;
}

#group_create_button.play_button--unavailable {
    color: #706e76;
    background-color: #232228;
    border-color: #35333b;
    cursor: default;
    pointer-events: none;
    box-shadow: none;
    transform: none;
}

#group_join_code_button {
    min-height: 42px;
    padding: 0 18px;

    color: #d9d6df;
    background-color: #222127;
    border: 1px solid #45424c;
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        color ease-in-out 0.2s,
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s,
        transform ease-in-out 0.2s;
}

#group_join_code_button:hover {
    color: #ffffff;
    background-color: #2c2a32;
    border-color: #6d6976;
    transform: translateY(-1px);
}

#group_join_code_button:disabled {
    color: #77747e;
    background-color: #1b1a1f;
    border-color: #302e36;
    cursor: wait;
    transform: none;
}


/* =========================================
   KEINE GRUPPEN VORHANDEN
========================================= */

#play_open_group_empty {
    width: 100%;
    padding: 42px 20px 26px;

    color: #77747e;

    text-align: center;
    box-sizing: border-box;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
}


/* =========================================
   LISTE OFFENER GRUPPEN
========================================= */

#play_open_group_list {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;

    box-sizing: border-box;
}


/* =========================================
   OFFENE GRUPPENKARTE
========================================= */

.play_open_group_card {
    width: 100%;
    min-height: 78px;
    padding: 12px 14px;

    display: grid;
    grid-template-columns:
        minmax(180px, 260px)
        minmax(0, 1fr)
        150px;
    align-items: center;
    gap: 18px;

    box-sizing: border-box;

    background-color: #16151b;
    border: 1px solid #302e37;
    border-radius: 6px;

    transition:
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s,
        box-shadow ease-in-out 0.2s;
}

.play_open_group_card:hover {
    background-color: #1b1a20;
    border-color: #45424c;

    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.14);
}

.play_open_group_card_header {
    min-width: 0;

    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.play_open_group_name {
    width: 100%;

    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 900;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.play_open_group_meta {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 8px;

    overflow: hidden;
}

.play_open_group_game {
    max-width: calc(100% - 52px);
    padding: 2px 7px;

    color: #e8b13b;
    background-color: rgba(221, 162, 34, 0.07);
    border: 1px solid rgba(221, 162, 34, 0.28);
    border-radius: 4px;

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.play_open_group_members_count {
    flex: 0 0 auto;

    color: #87848f;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
}


/* =========================================
   MITGLIEDERVORSCHAU
========================================= */

.play_open_group_member_preview {
    min-width: 0;
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 8px;

    overflow: hidden;
}

.play_open_group_preview_member {
    position: relative;
    height: 42px;
    width: 42px;
    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #dedde2;
}

.play_open_group_preview_member--leader {
    color: #ffffff;
}

.play_open_group_preview_member--leader::after {
    content: "♛";

    position: absolute;
    top: -6px;
    right: -3px;
    z-index: 2;

    color: #e7aa1c;
    font-size: 13px;
    line-height: 1;

    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.play_open_group_member_name {
    display: none;
}

.play_open_group_avatar {
    height: 38px;
    width: 38px;
    flex: 0 0 38px;

    object-fit: cover;

    background-color: #24232a;
    border: 2px solid var(--player-color, #45424c);
    border-radius: 50%;
}


/* =========================================
   GRUPPE BETRETEN
========================================= */

.group_join_button {
    width: 150px;
    height: 40px;

    color: #79dc94;
    background-color: #19181d;

    border: 1px solid #376e46;
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s,
        box-shadow ease-in-out 0.2s,
        transform ease-in-out 0.2s;
}

.group_join_button:hover {
    color: #a1edb5;
    background-color: #1d211f;
    border-color: #67d786;

    box-shadow: 0 0 15px rgba(66, 201, 102, 0.15);
    transform: translateY(-1px);
}

.group_join_button:disabled {
    color: #85828c;
    background-color: #28272d;
    border-color: #3c3a43;

    cursor: default;
    box-shadow: none;
    transform: none;
}


/* =========================================
   EIGENE GRUPPE
========================================= */

.play_group_header,
.play_group_actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.play_group_header {
    margin-bottom: 20px;
}

.play_group_actions {
    width: calc(100% + 36px);
    min-height: 74px;
    margin: 20px -18px -18px;
    padding: 15px 18px;

    justify-content: center;

    box-sizing: border-box;
    background-color: #111014;
    border-top: 1px solid #2b2931;
    border-radius: 0 0 7px 7px;
}


/* =========================================
   GRUPPENLAYOUT UND LOBBY-EINSTELLUNGEN
========================================= */

.play_group_content_layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 16px;

    width: 100%;
}

.play_group_main {
    min-width: 0;
    padding: 18px;

    box-sizing: border-box;

    background-color: #141318;
    border: 1px solid #28262e;
    border-radius: 7px;
}

.play_lobby_settings {
    min-width: 0;
    padding: 22px;

    box-sizing: border-box;

    background-color: #141318;
    border: 1px solid #302e37;
    border-radius: 7px;

    box-shadow:
        inset 0 0 25px rgba(255, 255, 255, 0.012);
}

.play_lobby_settings_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;

    margin-bottom: 14px;
    padding-bottom: 14px;

    border-bottom: 1px solid #29272f;
}

.play_lobby_settings_title {
    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 900;
}

.play_lobby_settings_actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

#play_group_code_copy_button {
    position: relative;

    flex: 0 0 38px;
    height: 38px;
    width: 38px;
    padding: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #79dc94;
    background-color: #19181d;
    border: 1px solid #376e46;
    border-radius: 4px;

    cursor: pointer;

    transition:
        color ease-in-out 0.2s,
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s;
}

#play_group_code_copy_button:hover {
    color: #a1edb5;
    background-color: #1d211f;
    border-color: #67d786;
}

#play_group_code_copy_button svg {
    height: 19px;
    width: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

#play_settings_reset_button {
    min-height: 34px;
    padding: 0 12px;

    color: #dda222;
    background-color: #19181d;
    border: 1px solid #6b5220;
    border-radius: 4px;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition:
        color ease-in-out 0.2s,
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s;
}

#play_settings_reset_button:hover {
    color: #f0bb4a;
    background-color: #211f1b;
    border-color: #dda222;
}

#play_settings_reset_button:disabled {
    color: #65626b;
    background-color: #19181d;
    border-color: #2b2930;
    cursor: wait;
}

.play_lobby_settings_switch_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
}

.play_lobby_settings_range_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
}

.play_lobby_settings_category_title {
    grid-column: 1 / -1;

    margin-top: 10px;
    padding: 8px 0 5px;

    color: #77747e;
    border-bottom: 1px solid #2a282f;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.75px;
    text-transform: uppercase;
}

.play_lobby_setting_row {
    min-height: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    padding: 7px 0;

    border-bottom: 1px solid #25232a;
}

.play_lobby_setting_row--visibility {
    grid-column: 1 / -1;
}

.play_group_visibility_actions {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.play_group_visibility_control {
    flex: 0 0 auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(90px, 1fr));
    gap: 3px;

    padding: 3px;

    background-color: #111014;
    border: 1px solid #302e37;
    border-radius: 6px;
}

.play_group_visibility_button {
    min-height: 34px;
    padding: 0 13px;

    color: #9d9aa4;
    background-color: #19181d;
    border: 1px solid #34313a;
    border-radius: 4px;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition:
        color ease-in-out 0.2s,
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s;
}

.play_group_visibility_button:hover:not(:disabled) {
    color: #c5e9ce;
    background-color: #1d211f;
    border-color: #376e46;
}

.play_group_visibility_button--active {
    color: #79dc94;
    background-color: #1b201d;
    border-color: #4b9d61;
}

.play_group_visibility_button--active[data-visibility="private"] {
    color: #79dc94;
    background-color: #1b201d;
    border-color: #4b9d61;
}

.play_group_visibility_button:disabled {
    cursor: default;
    opacity: 0.72;
}

.play_lobby_setting_text {
    min-width: 0;
}

.play_lobby_setting_name {
    color: #ecebf0;

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.play_lobby_setting_name--task {
    display: flex;
    align-items: center;
    gap: 8px;
}

.play_lobby_setting_name--task::before {
    content: "";

    height: 9px;
    width: 9px;
    flex: 0 0 9px;

    border-radius: 50%;
}

.play_lobby_setting_name--solo::before {
    background-color: #dda222;
    box-shadow: 0 0 7px rgba(221, 162, 34, 0.28);
}

.play_lobby_setting_name--point::before {
    background-color: #22a8dd;
    box-shadow: 0 0 7px rgba(34, 168, 221, 0.28);
}

.play_lobby_setting_name--group::before {
    background-color: #da65f7;
    box-shadow: 0 0 7px rgba(218, 101, 247, 0.28);
}

.play_lobby_setting_description {
    margin-top: 2px;

    color: #77747e;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.45;
}

.play_task_distribution {
    grid-column: 1 / -1;

    padding: 14px 0 10px;
}

.play_task_distribution_control {
    position: relative;

    width: 100%;
    height: 30px;
    margin: 16px 0 13px;
}

.play_task_distribution_bar {
    position: absolute;
    top: 8px;
    left: 0;

    width: 100%;
    height: 14px;

    display: flex;
    overflow: hidden;

    background-color: #242229;
    border: 1px solid #37343e;
    border-radius: 999px;
    box-sizing: border-box;
}

.play_task_distribution_segment {
    height: 100%;
    min-width: 1%;

    transition: width ease-out 0.08s;
}

.play_task_distribution_segment--solo {
    width: 60%;
    background-color: #dda222;
}

.play_task_distribution_segment--point {
    width: 30%;
    background-color: #22a8dd;
}

.play_task_distribution_segment--group {
    width: 10%;
    background-color: #da65f7;
}

.play_task_distribution_handle {
    position: absolute;
    inset: 0;
    z-index: 2;

    width: 100%;
    height: 30px;
    margin: 0;

    appearance: none;
    -webkit-appearance: none;

    background: transparent;
    pointer-events: none;
}

.play_task_distribution_handle::-webkit-slider-runnable-track {
    height: 14px;
    background: transparent;
    border: 0;
}

.play_task_distribution_handle::-moz-range-track {
    height: 14px;
    background: transparent;
    border: 0;
}

.play_task_distribution_handle::-webkit-slider-thumb {
    height: 28px;
    width: 8px;
    margin-top: -7px;

    appearance: none;
    -webkit-appearance: none;

    background-color: #f3f1f6;
    border: 2px solid #16151b;
    border-radius: 4px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.45);

    cursor: ew-resize;
    pointer-events: auto;
}

.play_task_distribution_handle::-moz-range-thumb {
    height: 24px;
    width: 6px;

    background-color: #f3f1f6;
    border: 2px solid #16151b;
    border-radius: 4px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.45);

    cursor: ew-resize;
    pointer-events: auto;
}

.play_task_distribution_handle--solo::-webkit-slider-thumb {
    border-color: #7b5a16;
}

.play_task_distribution_handle--point::-webkit-slider-thumb {
    border-color: #176586;
}

.play_task_distribution_handle--solo::-moz-range-thumb {
    border-color: #7b5a16;
}

.play_task_distribution_handle--point::-moz-range-thumb {
    border-color: #176586;
}

.play_task_distribution_handle:focus-visible {
    outline: 0;
}

.play_task_distribution_handle:focus-visible::-webkit-slider-thumb {
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.18),
        0 2px 8px rgba(0, 0, 0, 0.45);
}

.play_task_distribution_handle:focus-visible::-moz-range-thumb {
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.18),
        0 2px 8px rgba(0, 0, 0, 0.45);
}

.play_task_distribution_legend {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.play_task_distribution_legend_item {
    min-width: 0;
    padding: 9px 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;

    color: #b7b3bd;
    background-color: #18171c;
    border: 1px solid #29272f;
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.play_task_distribution_legend_item span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.play_task_distribution_legend_item output {
    flex: 0 0 auto;
    font-weight: 900;
}

.play_task_distribution_legend_item--solo output {
    color: #dda222;
}

.play_task_distribution_legend_item--point output {
    color: #55c8f6;
}

.play_task_distribution_legend_item--group output {
    color: #e284fa;
}

.play_task_distribution_hint {
    margin-top: 10px;

    color: #706d77;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1.5;
}

.play_task_distribution--without-point
.play_task_distribution_segment--point {
    width: 0 !important;
    min-width: 0;
}

.play_task_distribution--without-point
.play_task_distribution_handle--solo {
    display: none;
}

.play_task_distribution--without-point
.play_task_distribution_handle--point::-webkit-slider-thumb {
    border-color: #7b5a16;
}

.play_task_distribution--without-point
.play_task_distribution_handle--point::-moz-range-thumb {
    border-color: #7b5a16;
}

.play_task_distribution--without-point
.play_task_distribution_legend {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}

.play_task_distribution--without-point
.play_task_distribution_legend_item--point {
    display: none;
}


/* Switch-Schalter */
.play_lobby_switch {
    position: relative;
    flex: 0 0 46px;

    height: 25px;

    cursor: pointer;
}

.play_lobby_switch_input {
    position: absolute;

    height: 1px;
    width: 1px;

    opacity: 0;
    pointer-events: none;
}

.play_lobby_switch_track {
    position: absolute;
    inset: 0;

    display: block;

    background-color: #2b2931;
    border: 1px solid #45424c;
    border-radius: 20px;

    transition:
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s,
        box-shadow ease-in-out 0.2s;
}

.play_lobby_switch_knob {
    position: absolute;
    top: 3px;
    left: 3px;

    height: 17px;
    width: 17px;

    display: block;

    background-color: #8b8891;
    border-radius: 50%;

    transition:
        left ease-in-out 0.2s,
        background-color ease-in-out 0.2s,
        transform ease-in-out 0.2s;
}

.play_lobby_switch_input:checked +
.play_lobby_switch_track {
    background-color: #1d522c;
    border-color: #3d9f59;

    box-shadow:
        0 0 12px rgba(66, 201, 102, 0.12);
}

.play_lobby_switch_input:checked +
.play_lobby_switch_track
.play_lobby_switch_knob {
    left: 24px;

    background-color: #7ce499;
}

.play_lobby_switch:hover
.play_lobby_switch_input:not(:disabled) +
.play_lobby_switch_track {
    border-color: #5a5762;
}

.play_lobby_switch:hover
.play_lobby_switch_input:checked:not(:disabled) +
.play_lobby_switch_track {
    border-color: #67d786;
}

.play_lobby_switch_input:focus-visible +
.play_lobby_switch_track {
    outline: 2px solid #67d786;
    outline-offset: 3px;
}

.play_lobby_switch_input:disabled +
.play_lobby_switch_track {
    opacity: 0.7;
}

.play_group_settings_summary {
    display: block;
}

.play_group_settings_summary_category {
    padding: 13px 0 7px;

    color: #dda222;
    border-bottom: 1px solid #2a282f;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.75px;
    text-transform: uppercase;
}

.play_group_settings_summary_category:first-child {
    padding-top: 2px;
}

.play_group_settings_summary_table {
    margin: 0;
}

.play_group_settings_summary_row {
    min-height: 48px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
    align-items: center;
    gap: 20px;

    padding: 5px 0;

    border-bottom: 1px solid #25232a;
    box-sizing: border-box;
}

.play_group_settings_summary_row dt,
.play_group_settings_summary_row dd {
    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.45;
}

.play_group_settings_summary_row dt {
    color: #a09da6;
}

.play_group_settings_summary_row dd {
    color: #ecebf0;
    font-weight: 700;
    text-align: right;
}

.play_group_settings_summary_row
.play_group_settings_summary_value--positive {
    color: #6ed88b;
}

.play_group_settings_summary_row
.play_group_settings_summary_value--negative {
    color: #ef747f;
}

.play_lobby_settings--readonly
.play_lobby_settings_actions,
.play_lobby_settings--readonly
.play_lobby_settings_switch_grid,
.play_lobby_settings--readonly
.play_lobby_settings_range_grid {
    display: none;
}

/* Slider */
.play_lobby_range_block {
    min-width: 0;
    padding: 11px 0 4px;
}

.play_lobby_range_block +
.play_lobby_range_block {
    padding-top: 11px;
    border-top: 0;
}

.play_lobby_range_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;

    margin-bottom: 13px;
}

.play_lobby_range_value {
    flex: 0 0 auto;
    min-width: 58px;
    padding: 5px 7px;

    box-sizing: border-box;

    color: #8beaa4;
    background-color: #1a2a1e;
    border: 1px solid #315e3c;
    border-radius: 4px;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.play_lobby_range {
    --range-progress: 50%;

    width: 100%;
    height: 18px;
    margin: 0;

    appearance: none;
    -webkit-appearance: none;

    background: transparent;
    cursor: pointer;
}

.play_lobby_range::-webkit-slider-runnable-track {
    height: 5px;

    background:
        linear-gradient(
            to right,
            var(--range-color, #3d9f59) 0,
            var(--range-color, #3d9f59) var(--range-progress),
            #34313a var(--range-progress),
            #34313a 100%
        );
    border-radius: 5px;
}

.play_lobby_range::-moz-range-track {
    height: 5px;

    background:
        linear-gradient(
            to right,
            var(--range-color, #3d9f59) 0,
            var(--range-color, #3d9f59) var(--range-progress),
            #34313a var(--range-progress),
            #34313a 100%
        );
    border-radius: 5px;
}

.play_lobby_range::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
    margin-top: -6px;

    appearance: none;
    -webkit-appearance: none;

    background-color: var(--range-thumb, #7ce499);
    border: 3px solid var(--range-thumb-border, #1d522c);
    border-radius: 50%;

    box-shadow:
        0 0 0 2px var(--range-color, #3d9f59),
        0 0 12px rgba(66, 201, 102, 0.16);
}

.play_lobby_range::-moz-range-thumb {
    height: 13px;
    width: 13px;

    background-color: var(--range-thumb, #7ce499);
    border: 3px solid var(--range-thumb-border, #1d522c);
    border-radius: 50%;

    box-shadow:
        0 0 0 2px var(--range-color, #3d9f59),
        0 0 12px rgba(66, 201, 102, 0.16);
}

.play_lobby_range:focus-visible {
    outline: none;
}

.play_lobby_range:focus-visible::-webkit-slider-thumb {
    box-shadow:
        0 0 0 3px #141318,
        0 0 0 5px #67d786;
}

.play_lobby_range:disabled {
    opacity: 0.68;
    cursor: default;
}

.play_lobby_range_scale {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 3px;

    color: #64616b;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
}

/* =========================================
   MITGLIEDERREIHE
========================================= */

.group_members_row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: safe center;
    gap: 14px;

    width: 100%;
    padding: 5px 0 10px;

    overflow-x: auto;
    box-sizing: border-box;
}

.group_member_slot {
    position: relative;
    flex: 0 0 130px;

    height: 145px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    background-color: #16151b;
    border: 1px solid #302e37;
    border-radius: 8px;

    transition:
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s,
        transform ease-in-out 0.2s,
        box-shadow ease-in-out 0.2s;
}

.group_member_slot--occupied {
    background-color: #1a191f;
    border-color: transparent;

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.group_member_slot--occupied:hover {
    background-color: #1e1d23;
    border-color: transparent;
    transform: translateY(-2px);
}

.group_member_slot--empty {
    color: #6f6c76;

    background:
        linear-gradient(
            145deg,
            #151419,
            #121116
        );
    border-color: #29272f;
}

.group_member_empty_icon {
    height: 34px;
    width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #8d8994;
    background-color: #1d1c22;
    border: 1px solid #37353d;
    border-radius: 50%;

    font-family: "Manrope", sans-serif;
    font-size: 23px;
    font-weight: 300;
}

.group_member_empty_text {
    margin-top: 10px;

    color: #706d77;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
}


/* =========================================
   AVATAR UND NAME
========================================= */

.group_member_avatar {
    height: 68px;
    width: 68px;

    object-fit: cover;

    background-color: #24232a;
    border: 2px solid var(--player-color, #46434e);
    border-radius: 50%;

    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.play_avatar_placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background-color: #24232a;

    font-weight: 900;
}

.group_member_name {
    width: calc(100% - 14px);
    margin-top: 10px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    text-align: center;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================
   GRUPPENLEITER UND ENTFERNEN
========================================= */

.group_member_leader_icon {
    position: absolute;
    top: 8px;
    left: 10px;

    color: #dda222;
    font-size: 19px;
}

.group_member_remove_button {
    position: absolute !important;
    z-index: 6;
    top: 6px !important;
    right: 6px !important;

    height: 28px;
    width: 28px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ce6670;
    background-color: transparent;
    border: 0;
    border-radius: 4px;

    font-size: 21px;
    line-height: 1;
    cursor: pointer;
    transform: none !important;

    transition:
        color ease-in-out 0.2s,
        background-color ease-in-out 0.2s;
}

.group_member_remove_button:hover {
    color: #ff8b96;
    background-color: rgba(206, 70, 82, 0.1);
}

.group_member_remove_button:disabled {
    opacity: 0.5;
    cursor: wait;
}


/* =========================================
   VERLASSEN UND AUFLÖSEN
========================================= */

#group_leave_button {
    min-width: 190px;
    min-height: 42px;
    margin-left: 0;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        color ease-in-out 0.2s,
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s,
        box-shadow ease-in-out 0.2s,
        transform ease-in-out 0.2s;
}

#group_leave_button[data-group-action="leave"] {
    color: #f2c66f;
    background-color: #19181d;
    border: 1px solid #725a2b;
}

#group_leave_button[data-group-action="leave"]:hover {
    color: #ffe0a0;
    background-color: #211f1b;
    border-color: #b48a3b;

    box-shadow: 0 0 14px rgba(221, 162, 34, 0.12);
    transform: translateY(-1px);
}

#group_leave_button[data-group-action="disband"] {
    color: #ff8f99;
    background-color: #19181d;
    border: 1px solid #71353d;
}

#group_leave_button[data-group-action="disband"]:hover {
    color: #ffb0b7;
    background-color: #211a1c;
    border-color: #ae4d59;

    box-shadow: 0 0 14px rgba(206, 70, 82, 0.14);
    transform: translateY(-1px);
}

#group_leave_button:disabled {
    color: #716e76;
    background-color: #232228;
    border-color: #39373f;

    opacity: 0.65;
    cursor: wait;
    box-shadow: none;
    transform: none;
}


/* =========================================
   MELDUNGEN
========================================= */

#play_group_message {
    margin-top: 12px;
    padding: 12px 14px;

    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
}

.play_group_message--success {
    color: #83e49c;
    background-color: #171c18;
    border: 1px solid #315e3c;
}

.play_group_message--error {
    color: #ff818c;
    background-color: #2a171a;
    border: 1px solid #633139;
}


/* =========================================
   KLEINE BILDSCHIRME
========================================= */

@media (max-width: 850px) {
    .play_open_group_card {
        grid-template-columns:
            minmax(145px, 190px)
            minmax(0, 1fr)
            128px;
        gap: 12px;
    }

    .group_join_button {
        width: 128px;
    }
}

@media (max-width: 650px) {
    .play_section {
        padding: 16px;
    }

    .play_section_header {
        align-items: stretch;
        flex-direction: column;
    }

    .play_group_lobby_controls {
        width: 100%;
        margin-left: 0;
        align-items: stretch;
        flex-direction: column;
    }

    #group_create_button,
    #group_join_code_button {
        width: 100%;
    }

    .play_open_group_card {
        min-height: 72px;
        padding: 10px;

        grid-template-columns:
            minmax(105px, 1fr)
            minmax(0, 1fr)
            104px;
        gap: 8px;
    }

    .play_open_group_name {
        font-size: 13px;
    }

    .play_open_group_preview_member {
        height: 34px;
        width: 34px;
        flex-basis: 34px;
    }

    .play_open_group_avatar {
        height: 31px;
        width: 31px;
        flex-basis: 31px;
    }

    .group_join_button {
        width: 104px;
        padding: 0 8px;
        font-size: 12px;
    }

    .play_group_actions {
        width: calc(100% + 28px);
        margin: 18px -14px -14px;
        padding: 14px;

        align-items: stretch;
        flex-direction: column;
    }

    #group_leave_button,
    #group_start_button {
        width: 100%;
        min-width: 0;
        margin-left: 0;
    }

    .play_group_main,
    .play_lobby_settings {
        padding: 14px;
    }

    .group_members_row {
        justify-content: flex-start;
    }

    .play_lobby_settings_switch_grid {
        grid-template-columns: 1fr;
    }

    .play_lobby_settings_range_grid {
        grid-template-columns: 1fr;
    }

    .play_group_settings_summary_row {
        grid-template-columns: 1fr;
        gap: 2px;

        padding: 10px 0;
    }

    .play_group_settings_summary_row dd {
        text-align: left;
    }

    .play_task_distribution_legend {
        grid-template-columns: 1fr;
    }

    .play_task_distribution_legend_item {
        min-height: 38px;
    }

    .play_game_history_task {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .play_game_history_actions,
    #game_history_leave_button,
    #game_history_close_button {
        width: 100%;
    }

    .play_game_history_actions {
        align-items: stretch;
        flex-direction: column;
    }

    .play_lobby_setting_row--visibility {
        align-items: stretch;
        flex-direction: column;
    }

    .play_group_visibility_control {
        width: 100%;
        box-sizing: border-box;
    }

    .play_group_visibility_actions {
        width: 100%;
        align-items: center;
        flex-direction: row;
    }

    .play_group_visibility_actions
    .play_group_visibility_control {
        flex: 1 1 auto;
        width: auto;
    }

    #play_group_code_copy_button {
        flex: 0 0 38px;
        width: 38px;
    }
}



/* =========================================
   EIGENES BESTÄTIGUNGS-POPUP
========================================= */

.repo_toast_container {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 99990;

    width: min(430px, calc(100vw - 30px));

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 9px;

    pointer-events: none;
    transform: translateX(-50%);
}

.repo_toast {
    position: relative;

    min-height: 54px;
    width: 100%;
    padding: 11px 42px 11px 12px;

    display: flex;
    align-items: center;
    gap: 11px;

    box-sizing: border-box;

    background-color: rgba(22, 21, 27, 0.96);
    border: 1px solid #3b3942;
    border-radius: 7px;

    opacity: 0;
    pointer-events: auto;
    transform: translateY(-18px) scale(0.97);

    box-shadow:
        0 14px 38px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        opacity ease-in-out 0.22s,
        transform ease-in-out 0.22s,
        border-color ease-in-out 0.22s;
}

.repo_toast--visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.repo_toast--leaving {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
}

.repo_toast--success {
    background-color: rgba(20, 41, 26, 0.97);
    border-color: #315e3c;
}

.repo_toast--warning {
    background-color: rgba(41, 35, 24, 0.97);
    border-color: #745a28;
}

.repo_toast--error {
    background-color: rgba(43, 25, 28, 0.97);
    border-color: #71353d;
}

.repo_toast_icon {
    height: 28px;
    width: 28px;
    flex: 0 0 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 900;
}

.repo_toast--success .repo_toast_icon {
    color: #8beaa4;
    background-color: rgba(57, 143, 79, 0.16);
}

.repo_toast--warning .repo_toast_icon {
    color: #dda222;
    background-color: rgba(221, 162, 34, 0.14);
}

.repo_toast--error .repo_toast_icon {
    color: #ff8f99;
    background-color: rgba(206, 70, 82, 0.15);
}

.repo_toast_message {
    min-width: 0;

    color: #f0eff3;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.repo_toast_close {
    position: absolute;
    top: 50%;
    right: 9px;

    height: 28px;
    width: 28px;

    color: #77747e;
    background-color: transparent;
    border: 0;
    border-radius: 4px;

    font-size: 19px;
    cursor: pointer;

    transform: translateY(-50%);
}

.repo_toast_close:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.repo_confirm_overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
    box-sizing: border-box;

    background-color: rgba(8, 7, 11, 0.72);

    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity ease-in-out 0.18s,
        visibility ease-in-out 0.18s;
}

.repo_confirm_overlay--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.repo_confirm_dialog {
    position: relative;

    width: min(420px, 100%);
    padding: 25px;

    box-sizing: border-box;

    background-color: #19181e;
    border: 1px solid #35333c;
    border-radius: 8px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.02);

    transform: translateY(15px) scale(0.97);

    transition:
        transform ease-in-out 0.18s,
        border-color ease-in-out 0.18s;
}

.repo_confirm_overlay--visible
.repo_confirm_dialog {
    transform: translateY(0) scale(1);
}

.repo_confirm_dialog--danger {
    border-color: #69353c;
}

.repo_confirm_icon {
    height: 46px;
    width: 46px;
    margin: 0 auto 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #dda222;
    background-color: rgba(221, 162, 34, 0.1);

    border: 1px solid rgba(221, 162, 34, 0.35);
    border-radius: 50%;

    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 900;
}

.repo_confirm_dialog--danger
.repo_confirm_icon {
    color: #ff7885;
    background-color: rgba(206, 70, 82, 0.1);
    border-color: rgba(206, 70, 82, 0.4);
}

.repo_confirm_content {
    text-align: center;
}

.repo_confirm_title {
    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 900;
}

.repo_confirm_message {
    margin-top: 10px;

    color: #99969f;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1.6;
}

.repo_confirm_actions {
    margin-top: 24px;

    display: flex;
    justify-content: center;
    gap: 10px;
}

.repo_confirm_button {
    min-height: 40px;
    padding: 0 18px;

    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition:
        color ease-in-out 0.2s,
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s,
        transform ease-in-out 0.2s;
}

.repo_confirm_button:hover {
    transform: translateY(-1px);
}

.repo_confirm_button--cancel {
    color: #d5d3d9;
    background-color: #242329;
    border: 1px solid #3b3942;
}

.repo_confirm_button--cancel:hover {
    color: #ffffff;
    background-color: #302e36;
    border-color: #4c4954;
}

.repo_confirm_button--accept {
    color: #ffffff;
    background-color: #1d522c;
    border: 1px solid #3d9f59;
}

.repo_confirm_button--accept:hover {
    background-color: #286d3b;
    border-color: #67d786;
}

.repo_confirm_button--danger {
    color: #ffffff;
    background-color: #6c2931;
    border-color: #ad4652;
}

.repo_confirm_button--danger:hover {
    background-color: #89343e;
    border-color: #e05d6b;
}

.repo_group_dialog {
    width: min(500px, 100%);
    text-align: center;
}

.repo_group_dialog_cancel {
    margin-top: 14px;
}

.repo_group_code_input {
    width: 100%;
    height: 48px;
    margin-top: 20px;
    padding: 0 14px;

    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    background-color: #111014;
    border: 1px solid #45424c;
    border-radius: 5px;
    box-sizing: border-box;

    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 900;

    outline: 0;

    transition:
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s,
        box-shadow ease-in-out 0.2s;
}

.repo_group_code_input:focus {
    background-color: #15141a;
    border-color: #5b9bc9;
    box-shadow: 0 0 0 3px rgba(91, 155, 201, 0.12);
}

.repo_group_code_error {
    min-height: 18px;
    margin-top: 7px;

    color: #ff818c;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
}

.play_target_dialog {
    width: min(720px, 100%);
    text-align: left;
}

.play_target_dialog
.repo_confirm_message {
    max-width: 590px;
}

.play_target_dialog_grid {
    margin-top: 22px;

    display: grid;
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(125px, 1fr)
        );
    gap: 10px;
}

.play_target_dialog_player {
    min-width: 0;
    min-height: 145px;
    padding: 16px 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;

    color: #f3f1f5;
    background-color: #141318;
    border: 1px solid #34313b;
    border-radius: 7px;

    font-family: "Manrope", sans-serif;
    cursor: pointer;

    transition:
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s,
        box-shadow ease-in-out 0.18s,
        transform ease-in-out 0.18s;
}

.play_target_dialog_player:hover,
.play_target_dialog_player:focus-visible {
    background-color: #1a191f;
    border-color: var(
        --player-color,
        #65cedf
    );
    box-shadow:
        0 8px 24px
        color-mix(
            in srgb,
            var(--player-color, #65cedf)
            16%,
            transparent
        );
    outline: 0;
    transform: translateY(-2px);
}

.play_target_dialog_avatar {
    height: 72px;
    width: 72px;
    flex: 0 0 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    object-fit: cover;

    color: #ffffff;
    background-color: #1b1a20;
    border: 2px solid var(
        --player-color,
        #46434e
    );
    border-radius: 50%;

    font-size: 22px;
    font-weight: 900;
}

.play_target_dialog_name {
    max-width: 100%;
    padding-bottom: 4px;

    color: #ffffff;
    border-bottom: 2px solid var(
        --player-color,
        #46434e
    );

    font-size: 13px;
    font-weight: 800;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.play_target_dialog
.repo_confirm_actions {
    justify-content: flex-end;
}

@media (max-width: 500px) {
    .repo_confirm_actions {
        flex-direction: column-reverse;
    }

    .repo_confirm_button {
        width: 100%;
    }

    .play_target_dialog_grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .play_target_dialog
    .repo_confirm_actions {
        justify-content: stretch;
    }
}


/* =========================================================
   ADMIN: ACCOUNTS
   ========================================================= */

#right_page_inner.right_page_inner--admin-accounts {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left;
}

#right_page_inner.right_page_inner--admin-accounts
> #admin_accounts_page {
    width: 100%;
    max-width: 1180px;
    align-self: flex-start !important;
    margin: 0 auto 0 0 !important;
    text-align: left;
    box-sizing: border-box;
}

.admin_accounts_header {
    min-height: 74px;
    margin-bottom: 12px;
    padding: 16px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    box-sizing: border-box;
    background-color: #16151b;
    border: 1px solid #2d2b33;
    border-radius: 7px;
}

.admin_accounts_title {
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 900;
}

.admin_accounts_subtitle,
.admin_accounts_count {
    color: #85828c;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
}

.admin_accounts_subtitle {
    margin-top: 4px;
}

.admin_accounts_count {
    flex: 0 0 auto;
    padding: 7px 10px;
    background-color: #111014;
    border: 1px solid #29272e;
    border-radius: 5px;
}

.admin_accounts_filters {
    width: 100%;
    min-height: 52px;
    margin-bottom: 8px;
    padding: 8px 12px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    box-sizing: border-box;
    background-color: #141318;
    border: 1px solid #29272f;
    border-radius: 6px;
}

.admin_accounts_filters_label {
    margin-right: 3px;
    color: #8c8993;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.admin_account_filter_button {
    min-height: 34px;
    padding: 0 11px;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #77747e;
    background-color: #111014;
    border: 1px solid #2c2a31;
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;

    transition:
        color ease-in-out 0.18s,
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s;
}

.admin_account_filter_check {
    height: 16px;
    width: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: transparent;
    box-sizing: border-box;
    background-color: #19181d;
    border: 1px solid #3a3740;
    border-radius: 3px;

    font-size: 11px;
    line-height: 1;
}

.admin_account_filter_button--active {
    color: #e8e6eb;
    background-color: #1b1a20;
    border-color: #44414a;
}

.admin_account_filter_button--active
.admin_account_filter_check {
    color: #ffffff;
}

.admin_account_filter_button--active[data-account-filter="admin"] {
    color: #f0b94c;
    border-color: rgba(221, 162, 34, 0.42);
}

.admin_account_filter_button--active[data-account-filter="admin"]
.admin_account_filter_check {
    background-color: #755516;
    border-color: #dda222;
}

.admin_account_filter_button--active[data-account-filter="moderator"] {
    color: #c69cff;
    border-color: rgba(160, 98, 230, 0.48);
}

.admin_account_filter_button--active[data-account-filter="moderator"]
.admin_account_filter_check {
    background-color: #5f328d;
    border-color: #a66be8;
}

.admin_account_filter_button--active[data-account-filter="registered"] {
    color: #79df95;
    border-color: rgba(83, 190, 113, 0.4);
}

.admin_account_filter_button--active[data-account-filter="registered"]
.admin_account_filter_check {
    background-color: #245f35;
    border-color: #53be71;
}

.admin_account_filter_button--active[data-account-filter="guest"] {
    color: #c3c0c8;
    border-color: #4a4750;
}

.admin_account_filter_button--active[data-account-filter="guest"]
.admin_account_filter_check {
    background-color: #55515c;
    border-color: #77727f;
}

.admin_accounts_table_header,
.admin_account_row {
    display: grid;
    grid-template-columns:
        64px
        minmax(180px, 1fr)
        170px
        120px
        145px
        150px;
    align-items: center;
    column-gap: 10px;
}

.admin_accounts_table_header {
    min-height: 34px;
    padding: 0 14px;
    color: #716e78;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    box-sizing: border-box;
}

.admin_accounts_list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.admin_account_row {
    position: relative;
    min-height: 76px;
    padding: 10px 14px;

    box-sizing: border-box;
    background-color: #16151b;
    border: 1px solid #29272f;
    border-radius: 6px;

    transition:
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s,
        transform ease-in-out 0.18s;
}

.admin_account_row:hover,
.admin_account_row:focus-within {
    background-color: #1a191f;
    border-color: #3d3944;
    transform: translateY(-1px);
}

.admin_account_avatar_wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.admin_account_avatar {
    height: 48px;
    width: 48px;
    object-fit: cover;
    box-sizing: border-box;
    background-color: #242229;
    border: 1px solid #3a3740;
    border-radius: 50%;
}

.admin_account_avatar--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dda222;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 900;
}

.admin_account_cell {
    min-width: 0;
}

.admin_account_primary,
.admin_account_playername {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
}

.admin_account_primary {
    color: #ffffff;
    font-weight: 800;
}

.admin_account_playername {
    color: #aaa7b0;
}

.admin_account_created_at {
    color: #8f8c96;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.admin_account_status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;

    box-sizing: border-box;
    border: 1px solid transparent;
    border-radius: 999px;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.35px;
}

.admin_account_status--admin {
    color: #f0b94c;
    background-color: rgba(221, 162, 34, 0.09);
    border-color: rgba(221, 162, 34, 0.35);
}

.admin_account_status--moderator {
    color: #c69cff;
    background-color: rgba(151, 83, 219, 0.1);
    border-color: rgba(166, 107, 232, 0.38);
}

.admin_account_status--registered {
    color: #70dc8e;
    background-color: rgba(61, 159, 89, 0.09);
    border-color: rgba(61, 159, 89, 0.32);
}

.admin_account_status--guest {
    color: #a9a5af;
    background-color: rgba(143, 139, 151, 0.08);
    border-color: rgba(143, 139, 151, 0.25);
}

.admin_account_actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;

    opacity: 0;
    pointer-events: none;
    transform: translateX(7px);

    transition:
        opacity ease-in-out 0.18s,
        transform ease-in-out 0.18s;
}

.admin_account_row:hover .admin_account_actions,
.admin_account_row:focus-within .admin_account_actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.admin_account_delete_button {
    height: 32px;
    width: 32px;
    padding: 0;

    color: #e56c78;
    background-color: rgba(137, 52, 62, 0.12);
    border: 1px solid rgba(224, 93, 107, 0.38);
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 21px;
    line-height: 1;
    cursor: pointer;

    transition:
        color ease-in-out 0.18s,
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s;
}

.admin_account_delete_button:hover {
    color: #ffffff;
    background-color: #763039;
    border-color: #cf5664;
}

.admin_account_level_button {
    height: 32px;
    width: 32px;
    padding: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;

    transition:
        color ease-in-out 0.18s,
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s;
}

.admin_account_level_button--up {
    color: #79df95;
    background-color: rgba(61, 159, 89, 0.1);
    border: 1px solid rgba(83, 190, 113, 0.35);
}

.admin_account_level_button--up:hover {
    color: #ffffff;
    background-color: #245f35;
    border-color: #5ac879;
}

.admin_account_level_button--down {
    color: #e2ad46;
    background-color: rgba(221, 162, 34, 0.09);
    border: 1px solid rgba(221, 162, 34, 0.32);
}

.admin_account_level_button--down:hover {
    color: #ffffff;
    background-color: #674b1e;
    border-color: #dda222;
}

.admin_account_blacklist_button {
    height: 32px;
    width: 32px;
    padding: 0;

    box-sizing: border-box;
    background-color: rgba(137, 52, 62, 0.1);
    background-image: url('/img/menu_blacklist_icon.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 17px 17px;
    border: 1px solid rgba(224, 93, 107, 0.3);
    border-radius: 5px;

    cursor: pointer;

    transition:
        color ease-in-out 0.18s,
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s;
}

.admin_account_blacklist_button:hover {
    background-color: #693038;
    border-color: #c85260;
}

.admin_account_delete_button:disabled,
.admin_account_level_button:disabled,
.admin_account_blacklist_button:disabled {
    opacity: 0.45;
    cursor: wait;
}

.admin_accounts_empty,
.admin_accounts_error {
    width: 100%;
    padding: 42px 20px;
    color: #85828c;
    text-align: center;
    box-sizing: border-box;
    background-color: #16151b;
    border: 1px dashed #302e36;
    border-radius: 6px;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
}

.admin_accounts_empty[hidden] {
    display: none;
}

@media (max-width: 760px) {
    .admin_accounts_filters {
        align-items: stretch;
    }

    .admin_accounts_filters_label {
        width: 100%;
        margin-bottom: 1px;
    }

    .admin_accounts_table_header {
        display: none;
    }

    .admin_account_row {
        grid-template-columns: 58px minmax(0, 1fr) 42px;
        row-gap: 8px;
    }

    .admin_account_avatar_wrap {
        grid-row: 1 / span 4;
    }

    .admin_account_cell {
        grid-column: 2;
    }

    .admin_account_cell::before {
        content: attr(data-label) ': ';
        color: #6f6c75;
        font-family: "Manrope", sans-serif;
        font-size: 10px;
    }

    .admin_account_primary,
    .admin_account_playername,
    .admin_account_status,
    .admin_account_created_at {
        display: inline-flex;
        vertical-align: middle;
    }

    .admin_account_actions {
        grid-column: 2 / 4;
        grid-row: 5;
        justify-content: flex-start;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
}


/* =========================================================
   LAUFENDES SPIEL UND AUFGABENAUSWAHL
   ========================================================= */

.play_game_panel {
    width: 100%;
    margin-bottom: 18px;
    padding: 24px;

    box-sizing: border-box;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(221, 162, 34, 0.055),
            transparent 42%
        ),
        #16151b;
    border: 1px solid #302e37;
    border-radius: 8px;

    font-family: "Manrope", sans-serif;
}

#group_start_button {
    min-width: 190px;
    min-height: 42px;
    padding: 0 22px;

    color: #f0b83d;
    background-color: #1d1b17;
    border: 1px solid #8b681c;
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;

    transition:
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s,
        box-shadow ease-in-out 0.18s,
        transform ease-in-out 0.18s;
}

#group_start_button:hover {
    color: #ffd36f;
    background-color: #252117;
    border-color: #dda222;
    box-shadow: 0 0 16px rgba(221, 162, 34, 0.16);
    transform: translateY(-1px);
}

#group_start_button:disabled {
    opacity: 0.55;
    cursor: wait;
    box-shadow: none;
    transform: none;
}

.play_game_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;

    padding-bottom: 20px;
    border-bottom: 1px solid #2a2830;
}

.play_game_eyebrow {
    margin-bottom: 5px;

    color: #dda222;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.play_game_title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

.play_game_subtitle {
    max-width: 680px;
    margin-top: 5px;

    color: #8e8a96;
    font-size: 13px;
    line-height: 1.55;
}

.play_game_header_actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.play_game_countdown {
    min-width: 94px;
    padding: 10px 13px;

    box-sizing: border-box;

    color: #f2bd4c;
    background-color: rgba(221, 162, 34, 0.08);
    border: 1px solid rgba(221, 162, 34, 0.32);
    border-radius: 6px;

    font-size: 20px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    text-align: center;
}

#game_leave_button {
    min-height: 45px;
    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #ff939c;
    background-color: #19181d;
    border: 1px solid rgba(190, 69, 82, 0.58);
    border-radius: 6px;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    transition:
        color ease-in-out 0.2s,
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s;
}

#game_leave_button:hover {
    color: #ffb8be;
    background-color: #211a1c;
    border-color: rgba(231, 91, 105, 0.82);
}

#game_leave_button:disabled {
    opacity: 0.55;
    cursor: wait;
}

.play_game_selection,
.play_game_active {
    margin-top: 20px;
}

.play_game_choices {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.play_task_choice {
    min-width: 0;
    min-height: 210px;
    padding: 18px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    color: #ffffff;
    background-color: #141318;
    border: 1px solid #302e37;
    border-radius: 7px;

    font-family: "Manrope", sans-serif;
    text-align: left;
    cursor: pointer;

    transition:
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s,
        box-shadow ease-in-out 0.18s,
        transform ease-in-out 0.18s;
}

.play_task_choice:not(:disabled):hover {
    background-color: #1a191f;
    transform: translateY(-2px);
}

.play_task_choice--solo {
    border-color: rgba(221, 162, 34, 0.48);
}

.play_task_choice--solo:not(:disabled):hover {
    box-shadow: 0 8px 24px rgba(221, 162, 34, 0.09);
}

.play_task_choice--point {
    border-color: rgba(86, 199, 218, 0.5);
}

.play_task_choice--point:not(:disabled):hover {
    box-shadow: 0 8px 24px rgba(86, 199, 218, 0.09);
}

.play_task_choice:disabled {
    opacity: 0.55;
    cursor: wait;
    transform: none;
}

.play_task_choice--selected:disabled {
    opacity: 1;
    cursor: default;
    filter: none;
}

.play_task_choice--selected.play_task_choice--solo {
    background-color: rgba(221, 162, 34, 0.055);
    box-shadow: 0 0 0 1px rgba(221, 162, 34, 0.13);
}

.play_task_choice--selected.play_task_choice--point {
    background-color: rgba(86, 199, 218, 0.055);
    box-shadow: 0 0 0 1px rgba(86, 199, 218, 0.14);
}

.play_task_choice--not-selected:disabled {
    opacity: 0.32;
    cursor: default;
    filter: grayscale(1) blur(1.2px);
    border-color: #34323a;
    box-shadow: none;
}

.play_task_choice--not-selected .play_task_choice_type,
.play_task_choice--not-selected .play_task_choice_title,
.play_task_choice--not-selected .play_task_choice_description,
.play_task_choice--not-selected .play_task_choice_action {
    color: #8b8790;
}

.play_task_choice_type {
    margin-bottom: 14px;

    color: #7d7985;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.play_task_choice--solo .play_task_choice_type,
.play_task_choice--solo .play_task_choice_title {
    color: #dda222;
}

.play_task_choice--point .play_task_choice_type,
.play_task_choice--point .play_task_choice_title {
    color: #65cedf;
}

.play_task_choice_title {
    margin-bottom: 9px;

    font-size: 16px;
    font-weight: 900;
}

.play_task_choice_description {
    color: #c2bec9;
    font-size: 13px;
    line-height: 1.55;
}

.play_task_target_mention {
    margin: 0 3px;
    padding: 1px 1px 2px;

    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: #f5f3f7;
    border-bottom: 2px solid var(
        --player-color,
        #65cedf
    );

    font-weight: 850;
    line-height: 1.25;
    vertical-align: middle;
}

.play_task_target_avatar {
    height: 19px;
    width: 19px;
    flex: 0 0 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    object-fit: cover;

    color: #ffffff;
    background-color: #1b1a20;
    border: 1px solid var(
        --player-color,
        #46434e
    );
    border-radius: 50%;

    font-size: 9px;
    font-weight: 900;
}

.play_task_target_name {
    white-space: nowrap;
}

.play_assigned_task_target {
    margin-top: 18px;
    padding-top: 13px;

    display: flex;
    align-items: center;
    gap: 9px;

    border-top: 1px solid #302e37;

    --player-color: #46434e;
}

.play_assigned_task_target_avatar {
    height: 32px;
    width: 32px;
    flex: 0 0 32px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.play_assigned_task_target_avatar_image {
    height: 32px;
    width: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    object-fit: cover;

    color: #ffffff;
    background-color: #1b1a20;
    border: 2px solid var(
        --player-color,
        #46434e
    );
    border-radius: 50%;

    font-size: 11px;
    font-weight: 900;
}

.play_assigned_task_target_name {
    padding-bottom: 3px;

    color: #f5f3f7;
    border-bottom: 2px solid var(
        --player-color,
        #46434e
    );

    font-size: 14px;
    font-weight: 850;
}

.play_task_choice_action {
    margin-top: auto;
    padding-top: 22px;

    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.play_game_waiting {
    padding: 32px 18px;

    color: #aaa6b1;
    background-color: #141318;
    border: 1px dashed #34313b;
    border-radius: 7px;

    font-size: 13px;
    text-align: center;
}

.play_game_active {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.play_game_history {
    width: 100%;
}

.play_game_history_intro {
    margin-bottom: 16px;

    color: #aaa6b1;
    font-size: 13px;
    line-height: 1.55;
}

.play_game_history_rounds {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.play_game_history_round {
    overflow: hidden;

    background-color: #121116;
    border: 1px solid #302e37;
    border-radius: 7px;
}

.play_game_history_round_header {
    min-height: 48px;
    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    color: #ffffff;
    background-color: #18171c;
    border-bottom: 1px solid #2d2a33;

    font-size: 14px;
    font-weight: 900;
}

.play_game_history_round_type {
    color: #85818c;
    font-size: 11px;
    font-weight: 750;
}

.play_game_history_task_list {
    display: flex;
    flex-direction: column;
}

.play_game_history_task {
    padding: 14px 16px;

    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px;

    border-bottom: 1px solid #26242b;
}

.play_game_history_task:last-child {
    border-bottom: 0;
}

.play_game_history_player {
    min-width: 0;

    display: flex;
    align-items: center;
    align-self: flex-start;
    gap: 9px;

    --player-color: #46434e;
}

.play_game_history_avatar,
.play_game_history_group_icon {
    height: 34px;
    width: 34px;
    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    object-fit: cover;

    color: #ffffff;
    background-color: #1a191f;
    border: 2px solid var(
        --player-color,
        #46434e
    );
    border-radius: 50%;

    font-size: 12px;
    font-weight: 900;
}

.play_game_history_player_name {
    min-width: 0;
    padding-bottom: 2px;

    overflow: hidden;
    color: #f2f0f4;
    border-bottom: 2px solid var(
        --player-color,
        #46434e
    );

    font-size: 13px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.play_game_history_player--group {
    --player-color: #c080f0;
}

.play_game_history_task_content {
    min-width: 0;
}

.play_game_history_task_type {
    margin-bottom: 4px;

    color: #817d88;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.play_game_history_task--solo
.play_game_history_task_type {
    color: #dda222;
}

.play_game_history_task--point
.play_game_history_task_type {
    color: #65cedf;
}

.play_game_history_task--group
.play_game_history_task_type {
    color: #c080f0;
}

.play_game_history_task_title {
    margin-bottom: 4px;

    color: #f4f2f6;
    font-size: 14px;
    font-weight: 900;
}

.play_game_history_task_description {
    color: #aaa6b1;
    font-size: 12px;
    line-height: 1.55;
}

.play_game_history_empty {
    padding: 24px 16px;

    color: #817d88;
    background-color: #141318;
    border: 1px dashed #34313b;
    border-radius: 7px;

    font-size: 12px;
    text-align: center;
}

.play_game_history_actions {
    min-height: 40px;
    margin: 0 0 16px;
    padding: 10px 0 14px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;

    border-bottom: 1px solid #2a2830;
}

.play_game_history_waiting {
    color: #817d88;
    font-size: 12px;
}

#game_history_leave_button {
    min-height: 40px;
    padding: 0 18px;

    color: #ff9da6;
    background-color: #19181d;
    border: 1px solid rgba(179, 67, 79, 0.58);
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;

    transition:
        color ease-in-out 0.2s,
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s;
}

#game_history_leave_button:hover {
    color: #ffc3c8;
    background-color: #211a1c;
    border-color: rgba(231, 91, 105, 0.82);
}

#game_history_leave_button:disabled {
    opacity: 0.55;
    cursor: wait;
}

#game_history_close_button {
    min-height: 40px;
    padding: 0 18px;

    color: #79dc94;
    background-color: #19181d;
    border: 1px solid #376e46;
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

#game_history_close_button:hover {
    color: #a1edb5;
    background-color: #1d211f;
    border-color: #62d681;
}

.play_assigned_task {
    min-width: 0;
    min-height: 180px;
    padding: 20px;

    box-sizing: border-box;

    background-color: #141318;
    border: 1px solid rgba(221, 162, 34, 0.46);
    border-radius: 7px;
}

.play_assigned_task--point {
    border-color: rgba(86, 199, 218, 0.5);
}

.play_assigned_task--group {
    border-color: rgba(173, 104, 229, 0.52);
}

.play_assigned_task_label {
    margin-bottom: 13px;

    color: #7e7a86;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.play_assigned_task_title {
    margin-bottom: 9px;

    color: #dda222;
    font-size: 18px;
    font-weight: 900;
}

.play_assigned_task--point .play_assigned_task_title {
    color: #65cedf;
}

.play_assigned_task--group .play_assigned_task_title {
    color: #c080f0;
}

.play_assigned_task_description {
    color: #d0ccd5;
    font-size: 14px;
    line-height: 1.6;
}

.play_game_participants {
    margin-top: 18px;

    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.play_game_participant {
    min-width: 0;
    padding: 6px 10px 6px 6px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #aaa6b1;
    background-color: #141318;
    border: 1px solid #2e2c34;
    border-radius: 999px;

    font-size: 11px;
}

.play_game_participant--ready {
    color: #d9f4e0;
    border-color: rgba(68, 174, 99, 0.38);
}

.play_game_participant_avatar {
    height: 26px;
    width: 26px;

    object-fit: cover;
    border: 1px solid var(--player-color, #46434e);
    border-radius: 50%;
}

.play_game_participant_name {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.play_game_participant_status {
    color: #696670;
    font-size: 13px;
    font-weight: 900;
}

.play_game_participant--ready .play_game_participant_status {
    color: #55c777;
}

.play_game_leader_actions {
    margin-top: 20px;
    padding-top: 18px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;

    border-top: 1px solid #2a2830;
}

#game_next_round_button,
#game_finish_button {
    min-height: 40px;
    padding: 0 17px;

    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

#game_next_round_button {
    color: #f0b83d;
    background-color: #1d1b17;
    border: 1px solid #8b681c;
}

#game_next_round_button:hover {
    color: #ffd36f;
    background-color: #252117;
    border-color: #dda222;
}

#game_finish_button {
    color: #ff8993;
    background-color: #19181d;
    border: 1px solid rgba(213, 83, 98, 0.48);
}

#game_finish_button:hover {
    color: #ffb4bb;
    background-color: #211a1c;
    border-color: #d55362;
}

#game_next_round_button:disabled,
#game_finish_button:disabled {
    opacity: 0.55;
    cursor: wait;
}

@media (max-width: 850px) {
    .play_game_choices {
        grid-template-columns: 1fr;
    }

    .play_game_active {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .play_game_panel {
        padding: 16px;
    }

    .play_game_header {
        align-items: stretch;
        flex-direction: column;
    }

    .play_game_header_actions {
        align-items: stretch;
        flex-direction: column;
    }

    .play_game_countdown {
        width: 100%;
    }

    #game_leave_button {
        width: 100%;
    }

    .play_game_leader_actions {
        align-items: stretch;
        flex-direction: column;
    }

    #game_next_round_button,
    #game_finish_button {
        width: 100%;
    }
}


/* =========================================================
   BENUTZEREINSTELLUNGEN
   ========================================================= */

#right_page_inner.right_page_inner--account-settings {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left;
}

#account_settings_page {
    width: 100%;
    max-width: 1180px;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 14px;
    box-sizing: border-box;

    color: #ffffff;
    font-family: "Manrope", sans-serif;
}

#account_settings_form {
    width: 100%;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 14px;
    box-sizing: border-box;
}

.account_settings_panel {
    width: 100%;

    overflow: hidden;
    box-sizing: border-box;

    background-color: #16151b;
    border: 1px solid #2d2b33;
    border-radius: 7px;
}

.account_settings_panel_header {
    min-height: 82px;
    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;

    border-bottom: 1px solid #2b2931;
}

.account_settings_panel_title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
}

.account_settings_panel_subtitle {
    max-width: 720px;
    margin-top: 5px;

    color: #85828c;
    font-size: 12px;
    line-height: 1.55;
}

.account_settings_content {
    padding: 20px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 26px;
    box-sizing: border-box;
}

.account_settings_fields {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 21px;
}

.account_settings_field {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.account_settings_label {
    margin-bottom: 8px;

    color: #d8d5dd;
    font-size: 12px;
    font-weight: 900;
}

#account_settings_playername {
    width: 100%;
    height: 44px;
    padding: 0 13px;

    color: #ffffff;
    background-color: #111014;
    border: 1px solid #34313a;
    border-radius: 5px;
    outline: 0;

    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    font-size: 13px;

    transition:
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s,
        box-shadow ease-in-out 0.18s;
}

#account_settings_playername::placeholder {
    color: #66636d;
}

#account_settings_playername:focus {
    background-color: #131217;
    border-color: #dda222;
    box-shadow: 0 0 0 3px rgba(221, 162, 34, 0.1);
}

.account_settings_hint {
    margin-top: 7px;

    color: #77747e;
    font-size: 11px;
    line-height: 1.55;
}

.account_settings_color_controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

#account_settings_color {
    flex: 0 0 46px;

    height: 42px;
    width: 46px;
    padding: 4px;

    background-color: #111014;
    border: 1px solid #34313a;
    border-radius: 5px;
    cursor: pointer;
}

#account_settings_color::-webkit-color-swatch-wrapper {
    padding: 0;
}

#account_settings_color::-webkit-color-swatch,
#account_settings_color::-moz-color-swatch {
    border: 0;
    border-radius: 3px;
}

.account_settings_color_options {
    min-width: 0;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.account_settings_color_option {
    position: relative;

    height: 34px;
    width: 34px;
    padding: 0;

    background-color: var(--account-color-option);
    border: 2px solid transparent;
    border-radius: 50%;
    outline: 0;

    cursor: pointer;
    box-shadow: 0 0 0 1px #34313a;

    transition:
        border-color ease-in-out 0.16s,
        box-shadow ease-in-out 0.16s,
        transform ease-in-out 0.16s;
}

.account_settings_color_option:hover {
    transform: translateY(-1px);
    box-shadow:
        0 0 0 1px #5a5662,
        0 4px 12px rgba(0, 0, 0, 0.24);
}

.account_settings_color_option[aria-pressed="true"] {
    border-color: #ffffff;
    box-shadow:
        0 0 0 2px #111014,
        0 0 0 3px var(--account-color-option);
}

.account_settings_preview {
    min-width: 0;
    padding: 15px;

    align-self: stretch;
    box-sizing: border-box;

    background-color: #111014;
    border: 1px solid #2b2931;
    border-radius: 6px;
}

.account_settings_preview_label {
    margin-bottom: 13px;

    color: #77747e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

#account_settings_preview_card {
    min-height: 142px;
    padding: 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;

    background-color: #16151b;
    border: 1px solid #2d2b33;
    border-radius: 6px;
}

.account_settings_preview_avatar {
    height: 66px;
    width: 66px;

    object-fit: cover;

    background-color: #211f27;
    border: 2px solid var(--account-preview-color);
    border-radius: 50%;
}

.account_settings_preview_avatar--empty {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #77747e;
    font-size: 22px;
    font-weight: 900;
}

.account_settings_preview_name {
    max-width: 100%;
    margin-top: 10px;

    overflow: hidden;

    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account_settings_option_list {
    width: 100%;

    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.account_settings_option {
    min-height: 86px;
    padding: 17px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-sizing: border-box;
}

.account_settings_option + .account_settings_option {
    border-top: 1px solid #2b2931;
}

.account_settings_option_title {
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.account_settings_option_control {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #aaa7b0;
    font-size: 12px;
    font-weight: 800;
}

.account_settings_game_select,
#admin_tasks_gametype_filter {
    height: 40px;
    min-width: 220px;
    padding: 0 42px 0 13px;

    color: #ffffff;
    background-color: #111014;
    border: 1px solid #35323b;
    border-radius: 5px;
    outline: none;

    appearance: none;
    -webkit-appearance: none;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    cursor: pointer;

    background-image:
        linear-gradient(45deg, transparent 50%, #dda222 50%),
        linear-gradient(135deg, #dda222 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 17px,
        calc(100% - 12px) 17px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.account_settings_game_select:hover,
.account_settings_game_select:focus,
#admin_tasks_gametype_filter:hover,
#admin_tasks_gametype_filter:focus {
    border-color: #6d5727;
}

.account_settings_stream_menu {
    width: 100%;

    overflow: hidden;
    box-sizing: border-box;

    background-color: rgba(221, 162, 34, 0.018);
    border-top: 1px solid #2b2931;
}

.account_settings_stream_result {
    padding: 16px 20px;

    box-sizing: border-box;

    background-color: rgba(221, 162, 34, 0.025);
}

.account_settings_stream_url_row {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        42px
        auto;
    align-items: stretch;
    gap: 9px;
}

#account_settings_stream_url {
    min-width: 0;
    height: 42px;
    flex: 1 1 auto;
    padding: 0 12px;

    color: #c9c5ce;
    background-color: #111014;
    border: 1px solid #34313a;
    border-radius: 5px;
    outline: 0;

    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    font-size: 11px;

    filter: blur(5px);
    pointer-events: none;
    user-select: none;
    caret-color: transparent;

    transition:
        filter ease-in-out 0.18s,
        border-color ease-in-out 0.18s;
}

#account_settings_stream_url.account_settings_stream_url--visible {
    border-color: rgba(221, 162, 34, 0.48);
    filter: none;
    pointer-events: auto;
    user-select: text;
    caret-color: auto;
}

.account_settings_stream_icon_button {
    height: 42px;
    width: 42px;
    padding: 0;

    background-color: #18171c;
    background-image:
        url('/img/obs_visible_icon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;

    border: 1px solid #3a3741;
    border-radius: 5px;

    cursor: pointer;

    transition:
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s,
        opacity ease-in-out 0.18s;
}

.account_settings_stream_icon_button:hover:not(:disabled),
.account_settings_stream_icon_button[aria-pressed="true"] {
    background-color: rgba(221, 162, 34, 0.11);
    border-color: rgba(221, 162, 34, 0.62);
}

.account_settings_stream_icon_button:disabled,
#account_settings_stream_copy:disabled {
    opacity: 0.45;
    cursor: wait;
}

.account_settings_switch {
    position: relative;

    height: 30px;
    width: 52px;
    padding: 0;

    overflow: hidden;

    background-color: #2a2930;
    border: 1px solid #45424c;
    border-radius: 16px;
    outline: 0;

    cursor: pointer;

    transition:
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s,
        opacity ease-in-out 0.18s;
}

.account_settings_switch_thumb {
    position: absolute;
    top: 4px;
    left: 4px;

    height: 20px;
    width: 20px;

    background-color: #9a979f;
    border-radius: 50%;

    transition:
        left ease-in-out 0.18s,
        background-color ease-in-out 0.18s,
        box-shadow ease-in-out 0.18s;
}

.account_settings_switch[aria-checked="true"] {
    background-color: rgba(59, 184, 131, 0.18);
    border-color: #3b9d73;
}

.account_settings_switch[aria-checked="true"]
.account_settings_switch_thumb {
    left: 26px;

    background-color: #67d79a;
    box-shadow: 0 0 9px rgba(103, 215, 154, 0.28);
}

.account_settings_switch:disabled {
    cursor: wait;
    opacity: 0.62;
}

.account_settings_secondary_button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 16px;

    color: #f1c46b;
    background-color: rgba(221, 162, 34, 0.1);
    border: 1px solid rgba(221, 162, 34, 0.4);
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;

    transition:
        color ease-in-out 0.18s,
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s;
}

.account_settings_secondary_button:hover:not(:disabled) {
    color: #ffffff;
    background-color: rgba(221, 162, 34, 0.2);
    border-color: #dda222;
}

.account_settings_secondary_button:disabled {
    color: #77747e;
    background-color: #28272d;
    border-color: #3b3942;
    cursor: wait;
}

.account_settings_panel--danger {
    border-color: rgba(214, 75, 89, 0.28);
}

.account_settings_danger_content {
    min-height: 96px;
    padding: 19px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-sizing: border-box;

    background-color: rgba(137, 52, 62, 0.035);
}

#account_settings_delete {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 16px;

    color: #ff9aa4;
    background-color: rgba(137, 52, 62, 0.13);
    border: 1px solid rgba(224, 93, 107, 0.44);
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;

    transition:
        color ease-in-out 0.18s,
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s;
}

#account_settings_delete:hover:not(:disabled) {
    color: #ffffff;
    background-color: #763039;
    border-color: #cf5664;
}

#account_settings_delete:disabled {
    color: #68656e;
    background-color: #242329;
    border-color: #35333b;
    cursor: not-allowed;
}

.account_settings_admin_notice {
    padding: 10px 20px;

    color: #8c8992;
    background-color: #131217;
    border-top: 1px solid #2b2931;

    font-size: 11px;
}

.account_settings_error {
    width: 100%;
    max-width: 1180px;
    margin: 0;
    padding: 15px;

    color: #ff8d98;
    background-color: #2a171a;
    border: 1px solid #633139;
    border-radius: 6px;

    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
}

@media (max-width: 760px) {
    .account_settings_content {
        grid-template-columns: 1fr;
    }

    .account_settings_preview {
        max-width: 320px;
    }

    .account_settings_danger_content,
    .account_settings_option {
        align-items: stretch;
        flex-direction: column;
    }

    .account_settings_stream_url_row {
        grid-template-columns:
            42px
            minmax(0, 1fr);
    }

    #account_settings_stream_url {
        grid-column: 1 / -1;
    }

    #account_settings_stream_copy {
        width: auto;
    }

    #account_settings_delete,
    .account_settings_secondary_button {
        width: 100%;
    }

    .account_settings_option_control {
        align-self: flex-start;
    }
}


/* =========================================================
   AUFGABE VORSCHLAGEN
   ========================================================= */

#right_page_inner.right_page_inner--task-suggest {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left;
}

.task_suggest_page {
    width: 100%;
    max-width: 1180px;
    margin: 0;

    overflow: hidden;
    box-sizing: border-box;

    color: #ffffff;
    background-color: #16151b;
    border: 1px solid #2d2b33;
    border-radius: 7px;

    font-family: "Manrope", sans-serif;
}

.task_suggest_header {
    min-height: 84px;
    padding: 19px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    box-sizing: border-box;

    border-bottom: 1px solid #2b2931;
}

.task_suggest_title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
}

.task_suggest_subtitle {
    margin-top: 5px;

    color: #85828c;
    font-size: 12px;
}

.task_suggest_fields {
    padding: 20px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 17px;
    box-sizing: border-box;
}

.task_suggest_field {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.task_suggest_field--description,
.task_suggest_type_help,
.task_suggest_placeholder_hint {
    grid-column: 1 / -1;
}

.task_suggest_field_label {
    margin-bottom: 7px;

    color: #d8d5dd;
    font-size: 12px;
    font-weight: 900;
}

#task_suggest_title,
#task_suggest_description,
#task_suggest_type {
    width: 100%;

    color: #ffffff;
    background-color: #111014;
    border: 1px solid #34313a;
    border-radius: 5px;
    outline: 0;

    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    font-size: 13px;

    transition:
        border-color ease-in-out 0.18s,
        box-shadow ease-in-out 0.18s,
        background-color ease-in-out 0.18s;
}

#task_suggest_title,
#task_suggest_type {
    height: 43px;
    padding: 0 12px;
}

#task_suggest_description {
    min-height: 150px;
    padding: 12px;

    resize: vertical;
    line-height: 1.6;
}

#task_suggest_title::placeholder,
#task_suggest_description::placeholder {
    color: #66636d;
}

#task_suggest_title:focus,
#task_suggest_description:focus,
#task_suggest_type:focus {
    background-color: #131217;
    border-color: #8a6821;
    box-shadow: 0 0 0 3px rgba(221, 162, 34, 0.08);
}

.task_suggest_select {
    position: relative;
    display: block;
}

#task_suggest_type {
    height: 40px;
    padding: 0 45px 0 14px;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    color: #ecebf0;
    background-color: #111014;
    border-color: #302e37;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        color ease-in-out 0.2s,
        border-color ease-in-out 0.2s,
        background-color ease-in-out 0.2s,
        box-shadow ease-in-out 0.2s;
}

#task_suggest_type:hover {
    color: #ffffff;
    background-color: #19181e;
    border-color: #514226;
}

#task_suggest_type:focus {
    color: #ffffff;
    background-color: #19181e;
    border-color: #dda222;
    box-shadow: 0 0 0 3px rgba(221, 162, 34, 0.12);
}

#task_suggest_type option {
    color: #ffffff;
    background-color: #16151b;
}

.task_suggest_select_arrow {
    position: absolute;
    top: 50%;
    right: 15px;

    height: 7px;
    width: 7px;

    pointer-events: none;
    border-right: 2px solid #dda222;
    border-bottom: 2px solid #dda222;
    transform: translateY(-70%) rotate(45deg);
    transition: transform ease-in-out 0.2s;
}

.task_suggest_character_count {
    margin-top: 6px;

    color: #66636d;
    font-size: 10px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.task_suggest_type_help,
.task_suggest_placeholder_hint {
    padding: 11px 13px;

    display: flex;
    align-items: center;
    gap: 9px;
    box-sizing: border-box;

    color: #98959f;
    background-color: #131217;
    border: 1px solid #2b2931;
    border-radius: 5px;

    font-size: 11px;
    line-height: 1.55;
}

.task_suggest_type_dot {
    flex: 0 0 8px;

    height: 8px;
    width: 8px;
    border-radius: 50%;
}

.task_suggest_type_dot--solo {
    background-color: #dda222;
    box-shadow: 0 0 9px rgba(221, 162, 34, 0.25);
}

.task_suggest_type_dot--point {
    background-color: #22a8dd;
    box-shadow: 0 0 9px rgba(34, 168, 221, 0.25);
}

.task_suggest_type_dot--group {
    background-color: #da65f7;
    box-shadow: 0 0 9px rgba(218, 101, 247, 0.22);
}

.task_suggest_type_help--solo {
    border-color: rgba(221, 162, 34, 0.2);
}

.task_suggest_type_help--point {
    border-color: rgba(34, 168, 221, 0.22);
}

.task_suggest_type_help--group {
    border-color: rgba(218, 101, 247, 0.2);
}

.task_suggest_placeholder_hint {
    color: #a7cbd9;
    background-color: rgba(34, 168, 221, 0.05);
    border-color: rgba(34, 168, 221, 0.24);
}

.task_suggest_placeholder_hint[hidden] {
    display: none !important;
}

.task_suggest_placeholder_hint strong {
    color: #54c6f2;
}

.task_suggest_footer {
    min-height: 72px;
    padding: 14px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-sizing: border-box;

    border-top: 1px solid #2b2931;
}

.task_suggest_footer_text {
    max-width: 700px;

    color: #77747e;
    font-size: 11px;
    line-height: 1.55;
}

#task_suggest_submit {
    min-height: 42px;
    padding: 0 18px;

    color: #18140c;
    background-color: #dda222;
    border: 1px solid #efb43a;
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;

    transition:
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s,
        color ease-in-out 0.18s;
}

#task_suggest_submit:hover:not(:disabled) {
    background-color: #edb33a;
    border-color: #f4c45e;
}

#task_suggest_submit:disabled {
    color: #77747e;
    background-color: #28272d;
    border-color: #3b3942;
    cursor: default;
}

.task_suggest_error {
    width: calc(100% - 20px);
    max-width: 1180px;
    margin: 10px;
    padding: 15px;

    color: #ff8d98;
    background-color: #2a171a;
    border: 1px solid #633139;
    border-radius: 6px;

    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
}

.task_suggest_unavailable {
    width: 100%;
    max-width: 1180px;
    min-height: 86px;
    margin: 0;
    padding: 18px 20px;

    display: flex;
    align-items: center;
    gap: 15px;
    box-sizing: border-box;

    background-color: rgba(221, 162, 34, 0.06);
    border: 1px solid rgba(221, 162, 34, 0.24);
    border-radius: 7px;

    font-family: "Manrope", sans-serif;
}

.task_suggest_unavailable_icon {
    flex: 0 0 38px;
    height: 38px;
    width: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f1b534;
    background-color: rgba(221, 162, 34, 0.12);
    border: 1px solid rgba(221, 162, 34, 0.3);
    border-radius: 50%;

    font-size: 19px;
    font-weight: 900;
}

.task_suggest_unavailable_title {
    color: #f0c66d;
    font-size: 14px;
    font-weight: 900;
}

.task_suggest_unavailable_text {
    margin-top: 5px;

    color: #928b7c;
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 720px) {
    .task_suggest_header,
    .task_suggest_footer {
        align-items: stretch;
        flex-direction: column;
    }

    .task_suggest_review_note {
        flex: 1 1 auto;
    }

    .task_suggest_fields {
        grid-template-columns: 1fr;
    }

    .task_suggest_field--description,
    .task_suggest_type_help,
    .task_suggest_placeholder_hint {
        grid-column: auto;
    }

    #task_suggest_submit {
        width: 100%;
    }
}


/* =========================================================
   ADMIN: SEITENEINSTELLUNGEN
   ========================================================= */

#right_page_inner.right_page_inner--admin-settings {
    align-items: flex-start;
}

.admin_settings_page {
    width: 100%;
    max-width: 1180px;
    margin: 0;

    overflow: hidden;
    box-sizing: border-box;
    background-color: #16151b;
    border: 1px solid #2d2b33;
    border-radius: 7px;

    font-family: "Manrope", sans-serif;
}

.admin_settings_error {
    margin: 10px;
    padding: 15px;

    color: #ff8d98;
    background-color: #2a171a;
    border: 1px solid #633139;
    border-radius: 6px;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
}

.admin_settings_header {
    min-height: 82px;
    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    box-sizing: border-box;

    background-color: transparent;
    border: 0;
    border-radius: 0;
}

.admin_settings_title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
}

.admin_settings_subtitle {
    margin-top: 5px;
    color: #85828c;
    font-size: 12px;
}

.admin_settings_admin_note {
    flex: 0 0 auto;
    padding: 8px 11px;

    color: #d6b96f;
    background-color: rgba(221, 162, 34, 0.08);
    border: 1px solid rgba(221, 162, 34, 0.25);
    border-radius: 5px;

    font-size: 11px;
    font-weight: 800;
}

.admin_settings_list {
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 0;

    border-top: 1px solid #2b2931;
    border-bottom: 1px solid #2b2931;
}

.admin_setting_row {
    position: relative;
    overflow: hidden;

    min-height: 92px;
    width: 100%;
    padding: 18px 20px;

    display: grid;
    grid-template-columns: 5px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    box-sizing: border-box;

    background-color: transparent;
    border: 0;
    border-radius: 0;

    transition:
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s;
}

.admin_setting_row + .admin_setting_row {
    border-top: 1px solid #2b2931;
}

.admin_setting_row:hover {
    background-color: #19181e;
}

.admin_setting_indicator {
    height: 42px;
    width: 4px;

    background-color: #4c4952;
    border-radius: 10px;

    transition:
        background-color ease-in-out 0.2s,
        box-shadow ease-in-out 0.2s;
}

.admin_setting_row--allowed .admin_setting_indicator {
    background-color: #4bc875;
    box-shadow: 0 0 12px rgba(75, 200, 117, 0.2);
}

.admin_setting_row--blocked .admin_setting_indicator {
    background-color: #d45b68;
    box-shadow: 0 0 12px rgba(212, 91, 104, 0.16);
}

.admin_setting_content {
    min-width: 0;
}

.admin_setting_title {
    display: block;

    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.admin_setting_description {
    max-width: 720px;
    margin-top: 6px;

    color: #8d8a94;
    font-size: 12px;
    line-height: 1.55;
}

.admin_setting_switch {
    min-width: 132px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;

    cursor: pointer;
}

.admin_setting_switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.admin_setting_switch_track {
    position: relative;
    flex: 0 0 48px;
    height: 26px;

    background-color: #302e36;
    border: 1px solid #44414a;
    border-radius: 20px;
    box-sizing: border-box;

    transition:
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s,
        box-shadow ease-in-out 0.2s;
}

.admin_setting_switch_thumb {
    position: absolute;
    top: 3px;
    left: 3px;

    height: 18px;
    width: 18px;

    background-color: #8d8993;
    border-radius: 50%;

    transition:
        background-color ease-in-out 0.2s,
        transform ease-in-out 0.2s;
}

.admin_setting_switch input:checked +
.admin_setting_switch_track {
    background-color: #1e6a38;
    border-color: #40975a;
    box-shadow: 0 0 13px rgba(61, 177, 94, 0.13);
}

.admin_setting_switch input:checked +
.admin_setting_switch_track
.admin_setting_switch_thumb {
    background-color: #e8ffed;
    transform: translateX(22px);
}

.admin_setting_switch input:focus-visible +
.admin_setting_switch_track {
    outline: 2px solid rgba(221, 162, 34, 0.8);
    outline-offset: 3px;
}

.admin_setting_state {
    min-width: 58px;

    color: #d45b68;
    font-size: 11px;
    font-weight: 900;
    text-align: right;
}

.admin_setting_row--allowed .admin_setting_state {
    color: #64d687;
}

@media (max-width: 720px) {
    .admin_settings_header {
        align-items: stretch;
        flex-direction: column;
    }

    .admin_settings_admin_note {
        flex: 1 1 auto;
    }

    .admin_setting_row {
        grid-template-columns: 4px minmax(0, 1fr);
        gap: 13px;
    }

    .admin_setting_switch {
        grid-column: 2;
        justify-content: flex-start;
        margin-top: 4px;
    }

    .admin_setting_state {
        text-align: left;
    }
}


/* =========================================================
   WILLKOMMEN
   ========================================================= */

#right_page_inner.right_page_inner--welcome {
    align-items: flex-start;
}

#welcome_page {
    min-height: calc(100vh - 80px);
    width: 100%;
    max-width: 1180px;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;

    color: #ffffff;
    font-family: "Manrope", sans-serif;
}

.welcome_intro {
    width: 100%;
    max-width: none;
    padding: 34px;

    box-sizing: border-box;
    background-color: #16151b;
    border: 1px solid #2b2931;
    border-radius: 7px;
}

.welcome_intro h1 {
    margin: 0;

    color: #ffffff;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.welcome_intro_text {
    max-width: 690px;
    margin: 13px 0 0;

    color: #99969f;
    font-size: 15px;
    line-height: 1.75;
}

.welcome_action {
    position: relative;
    overflow: hidden;

    min-height: 270px;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background:
        linear-gradient(
            rgba(20, 19, 25, 0.76),
            rgba(20, 19, 25, 0.84)
        ),
        url("/img/repo_login_bg.png") center 45% / cover no-repeat;
    border: 1px solid #29272f;
    border-radius: 7px;
}

.welcome_action_glow {
    position: absolute;
    top: 50%;
    left: 50%;

    height: 200px;
    width: 420px;

    pointer-events: none;
    background:
        radial-gradient(
            ellipse at center,
            rgba(145, 70, 255, 0.18) 0%,
            rgba(145, 70, 255, 0.07) 38%,
            transparent 72%
        );
    transform: translate(-50%, -50%);
}

.welcome_login_button {
    position: relative;
    z-index: 2;

    min-height: 66px;
    min-width: 330px;
    padding: 0 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    box-sizing: border-box;

    color: #ffffff;
    background-color: #9146ff;
    border: 1px solid #a66dff;
    border-radius: 7px;

    box-shadow:
        0 0 0 1px rgba(145, 70, 255, 0.12),
        0 0 24px rgba(145, 70, 255, 0.32),
        0 0 60px rgba(145, 70, 255, 0.12);

    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;

    transition:
        background-color ease-in-out 0.2s,
        border-color ease-in-out 0.2s,
        box-shadow ease-in-out 0.2s,
        transform ease-in-out 0.2s;
}

.welcome_login_button:hover {
    color: #ffffff;
    background-color: #a05bff;
    border-color: #bc8cff;

    box-shadow:
        0 0 0 1px rgba(145, 70, 255, 0.18),
        0 0 32px rgba(145, 70, 255, 0.46),
        0 0 75px rgba(145, 70, 255, 0.18);

    transform: translateY(-2px);
}

.welcome_login_button--unavailable,
.welcome_login_button--unavailable:hover {
    color: #77747e;
    background-color: #28272d;
    border-color: #3b3942;
    cursor: default;
    pointer-events: none;
    box-shadow: none;
    transform: none;
}

.welcome_login_button--unavailable img {
    opacity: 0.5;
}

.welcome_admin_login_link {
    position: relative;
    z-index: 2;

    color: #8d8994;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;

    transition: color ease-in-out 0.2s;
}

.welcome_admin_login_link:hover {
    color: #bbb7c2;
}

.welcome_login_notice {
    position: relative;
    z-index: 2;

    max-width: 520px;
    padding: 9px 12px;

    display: flex;
    align-items: flex-start;
    gap: 9px;
    box-sizing: border-box;

    color: #aaa6b0;
    background-color: rgba(221, 162, 34, 0.06);
    border: 1px solid rgba(221, 162, 34, 0.22);
    border-radius: 5px;

    font-size: 11px;
    line-height: 1.55;
}

.welcome_login_notice_icon {
    flex: 0 0 18px;

    height: 18px;
    width: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #17130b;
    background-color: #dda222;
    border-radius: 50%;

    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.welcome_login_button img {
    height: 25px;
    width: 25px;

    object-fit: contain;
    filter: brightness(0) invert(1);
}

.welcome_login_button--play {
    background-color: #238346;
    border-color: #48ad67;

    box-shadow:
        0 0 0 1px rgba(65, 203, 105, 0.12),
        0 0 28px rgba(65, 203, 105, 0.3),
        0 0 65px rgba(65, 203, 105, 0.1);
}

.welcome_login_button--play:hover {
    background-color: #2d9c55;
    border-color: #6bd489;

    box-shadow:
        0 0 0 1px rgba(65, 203, 105, 0.18),
        0 0 36px rgba(65, 203, 105, 0.42),
        0 0 80px rgba(65, 203, 105, 0.14);
}

.welcome_explanation {
    width: 100%;
    max-width: none;
    padding: 34px;

    box-sizing: border-box;
    background-color: #16151b;
    border: 1px solid #2b2931;
    border-radius: 7px;
}

.welcome_explanation h2 {
    margin: 0;

    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.4;
}

.welcome_explanation p {
    max-width: 760px;
    margin: 12px 0 0;

    color: #8f8c96;
    font-size: 14px;
    line-height: 1.75;
}

@media (max-width: 700px) {
    #welcome_page {
        min-height: calc(100vh - 70px);
        padding: 0;
    }

    .welcome_intro {
        padding: 25px 22px;
    }

    .welcome_intro h1 {
        font-size: 30px;
    }

    .welcome_intro_text {
        font-size: 14px;
    }

    .welcome_action {
        min-height: 225px;
    }

    .welcome_action_glow {
        width: 320px;
    }

    .welcome_login_button {
        width: 100%;
        min-width: 0;
        max-width: 340px;
        padding: 0 20px;
        font-size: 14px;
    }

    .welcome_explanation {
        padding: 25px 22px;
    }
}

/* =========================================================
   ADMIN: TASKS
   ========================================================= */

#right_page_inner.right_page_inner--admin-tasks {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left;
}

#right_page_inner.right_page_inner--admin-tasks
> #admin_tasks_page {
    width: 100%;
    max-width: 1180px;
    align-self: flex-start !important;
    margin: 0 auto 0 0 !important;
    text-align: left;
    box-sizing: border-box;
}

.admin_tasks_header {
    min-height: 74px;
    margin-bottom: 12px;
    padding: 16px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    box-sizing: border-box;
    background-color: #16151b;
    border: 1px solid #2d2b33;
    border-radius: 7px;
}

.admin_tasks_title {
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 900;
}

.admin_tasks_subtitle,
.admin_tasks_count {
    color: #85828c;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
}

.admin_tasks_subtitle {
    margin-top: 4px;
}

.admin_tasks_header_actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.admin_tasks_count {
    flex: 0 0 auto;
    padding: 7px 10px;
    background-color: #111014;
    border: 1px solid #29272e;
    border-radius: 5px;
}

#admin_task_new_button,
#admin_task_save_button {
    min-height: 36px;
    padding: 0 14px;

    color: #f7d78e;
    background-color: #332817;
    border: 1px solid #75591e;
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;

    transition:
        color ease-in-out 0.18s,
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s;
}

#admin_task_new_button:hover,
#admin_task_save_button:hover {
    color: #ffffff;
    background-color: #4a381c;
    border-color: #dda222;
}

#admin_task_save_button:disabled {
    opacity: 0.5;
    cursor: wait;
}

.admin_task_editor {
    width: 100%;
    margin-bottom: 12px;
    padding: 17px;

    box-sizing: border-box;
    background-color: #18171c;
    border: 1px solid #5e491f;
    border-radius: 7px;
    box-shadow: 0 0 20px rgba(221, 162, 34, 0.05);
}

.admin_task_editor[hidden] {
    display: none;
}

.admin_task_editor_header {
    margin-bottom: 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

#admin_task_editor_title {
    color: #dda222;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 900;
}

#admin_task_editor_close {
    height: 30px;
    width: 30px;

    color: #aaa7b0;
    background-color: #201f25;
    border: 1px solid #35333b;
    border-radius: 4px;

    font-size: 19px;
    cursor: pointer;
}

#admin_task_editor_close:hover {
    color: #ffffff;
    border-color: #595661;
}

.admin_task_editor_grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px 210px 180px;
    gap: 13px;
}

.admin_task_field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.admin_task_field--game,
.admin_task_field--type,
.admin_task_field--status {
    position: relative;
}

.admin_task_field--game::after,
.admin_task_field--type::after,
.admin_task_field--status::after {
    content: "";

    position: absolute;
    right: 15px;
    bottom: 17px;

    height: 7px;
    width: 7px;

    border-right: 2px solid #dda222;
    border-bottom: 2px solid #dda222;

    pointer-events: none;
    transform: rotate(45deg);
    transform-origin: center;

    transition:
        border-color ease-in-out 0.18s,
        transform ease-in-out 0.18s;
}

.admin_task_field--description {
    grid-column: 1 / -1;
}

.admin_task_field > span {
    color: #8f8c96;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
}

.admin_task_field input,
.admin_task_field select,
.admin_task_field textarea,
#admin_tasks_search {
    width: 100%;
    color: #ffffff;
    background-color: #111014;
    border: 1px solid #302e36;
    border-radius: 5px;
    outline: none;

    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    font-size: 13px;

    transition:
        border-color ease-in-out 0.18s,
        box-shadow ease-in-out 0.18s;
}

.admin_task_field input {
    height: 40px;
    padding: 0 12px;
}

.admin_task_field select {
    height: 40px;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding: 0 42px 0 12px;
    cursor: pointer;
}

.admin_task_field--game:hover::after,
.admin_task_field--game:focus-within::after,
.admin_task_field--type:hover::after,
.admin_task_field--status:hover::after,
.admin_task_field--type:focus-within::after,
.admin_task_field--status:focus-within::after {
    border-color: #ffffff;
}

.admin_task_field select:hover {
    background-color: #19181e;
    border-color: #514226;
}

.admin_task_field textarea {
    min-height: 112px;
    padding: 11px 12px;
    resize: vertical;
    line-height: 1.5;
}

.admin_task_field input:focus,
.admin_task_field select:focus,
.admin_task_field textarea:focus,
#admin_tasks_search:focus {
    border-color: #8a6821;
    box-shadow: 0 0 0 3px rgba(221, 162, 34, 0.08);
}

.admin_task_field select option {
    color: #ffffff;
    background-color: #16151b;
}

.admin_task_editor_actions {
    margin-top: 14px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.admin_task_cancel_button {
    min-height: 36px;
    padding: 0 14px;

    color: #aaa7b0;
    background-color: #201f25;
    border: 1px solid #35333b;
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.admin_tasks_filters {
    width: 100%;
    margin-bottom: 10px;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;
    background-color: #141318;
    border: 1px solid #29272f;
    border-radius: 6px;
    overflow: hidden;
}

.admin_tasks_filter_primary,
.admin_tasks_filter_secondary {
    width: 100%;
    padding: 13px 14px;

    display: grid;
    align-items: end;
    gap: 18px;

    box-sizing: border-box;
}

.admin_tasks_filter_primary {
    grid-template-columns:
        minmax(210px, 280px)
        minmax(280px, 1fr);
}

.admin_tasks_filter_secondary {
    grid-template-columns:
        minmax(420px, 1.35fr)
        minmax(290px, 0.8fr);

    background-color: rgba(255, 255, 255, 0.012);
    border-top: 1px solid #29272f;
}

.admin_tasks_filter_control {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 7px;
}

.admin_tasks_filter_label {
    color: #91805c;

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.admin_tasks_game_filter,
.admin_tasks_game_filter select {
    width: 100%;
    min-width: 0;
}

#admin_tasks_gametype_filter {
    width: 100%;
    min-width: 0;
}

.admin_task_type_filters,
.admin_task_status_filters {
    width: 100%;

    display: grid;
    align-items: center;
    gap: 5px;

    padding: 4px;
    box-sizing: border-box;

    background-color: #111014;
    border: 1px solid #29272f;
    border-radius: 6px;
}

.admin_task_type_filters {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin_task_status_filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin_task_filter_button {
    width: 100%;
    min-height: 34px;
    padding: 0 9px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    color: #817e87;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 4px;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;

    transition:
        color ease-in-out 0.18s,
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s;
}

.admin_task_filter_button:hover:not(.admin_task_filter_button--active) {
    color: #b8b5bd;
    background-color: #19181d;
}

.admin_task_filter_button--active {
    color: #dda222;
    background-color: #29251c;
    border-color: #6b5220;
}

.admin_task_filter_button--active[data-task-status-filter="visible"] {
    color: #79df95;
    background-color: rgba(61, 159, 89, 0.09);
    border-color: rgba(83, 190, 113, 0.38);
}

.admin_task_filter_button--active[data-task-status-filter="locked"] {
    color: #c3c0c8;
    background-color: rgba(143, 139, 151, 0.08);
    border-color: #4a4750;
}

.admin_task_type_dot {
    height: 7px;
    width: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
}

.admin_task_type_dot--solo {
    background-color: #dda222;
}

.admin_task_type_dot--point {
    background-color: #22a8dd;
}

.admin_task_type_dot--group {
    background-color: #da65f7;
}

.admin_task_status_dot {
    height: 7px;
    width: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
}

.admin_task_status_dot--visible {
    background-color: #62cd80;
}

.admin_task_status_dot--locked {
    background-color: #85828c;
}

.admin_tasks_search {
    position: relative;
    width: 100%;
    min-width: 0;
}

#admin_tasks_search {
    width: 100%;
    height: 40px;
    padding: 0 38px 0 12px;

    box-sizing: border-box;
}

#admin_tasks_search_clear {
    position: absolute;
    top: 5px;
    right: 5px;

    height: 30px;
    width: 30px;

    display: none;

    color: #8f8c96;
    background-color: transparent;
    border: 0;
    border-radius: 4px;

    font-size: 18px;
    cursor: pointer;
}

.admin_tasks_table_header,
.admin_task_row {
    width: 100%;

    display: grid;
    grid-template-columns:
        50px
        90px
        85px
        90px
        minmax(140px, 0.9fr)
        minmax(220px, 1.7fr)
        145px;
    align-items: center;
    column-gap: 13px;
}

.admin_tasks_table_header {
    min-height: 34px;
    padding: 0 14px;
    color: #716e78;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    box-sizing: border-box;
}

.admin_tasks_list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.admin_task_row {
    min-height: 78px;
    padding: 11px 14px;

    box-sizing: border-box;
    background-color: #16151b;
    border: 1px solid #29272f;
    border-radius: 6px;

    transition:
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s,
        transform ease-in-out 0.18s;
}

.admin_task_row:hover,
.admin_task_row:focus-within {
    background-color: #1a191f;
    border-color: #3d3944;
    transform: translateY(-1px);
}

.admin_task_id {
    color: #7f7c86;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}

.admin_task_game {
    min-width: 0;

    color: #d8d5de;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin_task_type {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 0 9px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin_task_type--solo {
    color: #dda222;
    background-color: rgba(221, 162, 34, 0.08);
    border-color: rgba(221, 162, 34, 0.32);
}

.admin_task_type--point {
    color: #22a8dd;
    background-color: rgba(34, 168, 221, 0.08);
    border-color: rgba(34, 168, 221, 0.32);
}

.admin_task_type--group {
    color: #da65f7;
    background-color: rgba(218, 101, 247, 0.08);
    border-color: rgba(218, 101, 247, 0.32);
}

.admin_task_status {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 0 9px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin_task_status--visible {
    color: #79df95;
    background-color: rgba(61, 159, 89, 0.08);
    border-color: rgba(83, 190, 113, 0.32);
}

.admin_task_status--locked {
    color: #aaa7b0;
    background-color: rgba(143, 139, 151, 0.07);
    border-color: rgba(143, 139, 151, 0.25);
}

.admin_task_row[data-task-status="locked"] {
    border-left-color: #55515c;
}

.admin_task_row_title,
.admin_task_row_description {
    min-width: 0;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
}

.admin_task_row_title {
    color: #ffffff;
    font-weight: 900;
}

.admin_task_row_description {
    display: -webkit-box;
    overflow: hidden;
    color: #aaa7b0;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.admin_task_row_actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;

    opacity: 0;
    pointer-events: none;
    transform: translateX(7px);

    transition:
        opacity ease-in-out 0.18s,
        transform ease-in-out 0.18s;
}

.admin_task_row:hover .admin_task_row_actions,
.admin_task_row:focus-within .admin_task_row_actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.admin_task_edit_button {
    min-height: 34px;
    padding: 0 10px;

    color: #d8d5dd;
    background-color: #222127;
    border: 1px solid #3a3740;
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.admin_task_edit_button:hover {
    color: #ffffff;
    background-color: #302e36;
    border-color: #56525d;
}

.admin_task_delete_button {
    height: 34px;
    width: 34px;

    color: #e56c78;
    background-color: rgba(137, 52, 62, 0.12);
    border: 1px solid rgba(224, 93, 107, 0.38);
    border-radius: 5px;

    font-size: 20px;
    cursor: pointer;
}

.admin_task_delete_button:hover:not(:disabled) {
    color: #ffffff;
    background-color: #763039;
    border-color: #cf5664;
}

.admin_task_delete_button:disabled {
    color: #5e5b64;
    background-color: #1b1a1f;
    border-color: #2b2930;
    cursor: not-allowed;
}

.admin_tasks_empty,
.admin_tasks_error {
    width: 100%;
    padding: 42px 20px;
    color: #85828c;
    text-align: center;
    box-sizing: border-box;
    background-color: #16151b;
    border: 1px dashed #302e36;
    border-radius: 6px;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
}

.admin_tasks_empty[hidden] {
    display: none;
}

@media (max-width: 920px) {
    .admin_tasks_filter_primary,
    .admin_tasks_filter_secondary {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .admin_tasks_search {
        width: 100%;
        min-width: 0;
        flex-basis: auto;
    }

    .admin_tasks_table_header {
        display: none;
    }

    .admin_task_row {
        grid-template-columns: 50px 80px 90px 95px minmax(0, 1fr) 145px;
        row-gap: 7px;
    }

    .admin_task_row_description {
        grid-column: 2 / 6;
        grid-row: 2;
    }

    .admin_task_row_actions {
        grid-column: 6;
        grid-row: 1 / span 2;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
}

@media (max-width: 650px) {
    .admin_tasks_header,
    .admin_tasks_header_actions {
        align-items: stretch;
        flex-direction: column;
    }

    #admin_task_new_button {
        width: 100%;
    }

    .admin_task_editor_grid {
        grid-template-columns: 1fr;
    }

    .admin_task_field--description {
        grid-column: auto;
    }

    .admin_tasks_filter_primary,
    .admin_tasks_filter_secondary {
        padding: 12px;
    }

    .admin_task_type_filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin_task_status_filters {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin_task_filter_button {
        padding: 0 6px;
        font-size: 10px;
    }

    .admin_task_row {
        grid-template-columns: 50px minmax(0, 1fr);
    }

    .admin_task_row > * {
        grid-column: 2;
    }

    .admin_task_id {
        grid-column: 1;
        grid-row: 1;
    }

    .admin_task_row_actions {
        grid-column: 1 / -1;
        grid-row: auto;
        justify-content: flex-start;
    }
}


/* =========================================================
   ADMIN: BLACKLIST
   ========================================================= */

#right_page_inner.right_page_inner--admin-blacklist {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left;
}

#right_page_inner.right_page_inner--admin-blacklist
> #admin_blacklist_page {
    width: 100%;
    max-width: 1180px;
    align-self: flex-start !important;
    margin: 0 auto 0 0 !important;
    box-sizing: border-box;
}

.admin_blacklist_header {
    min-height: 74px;
    margin-bottom: 12px;
    padding: 16px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    box-sizing: border-box;
    background-color: #16151b;
    border: 1px solid #2d2b33;
    border-radius: 7px;
}

.admin_blacklist_add_form {
    margin-bottom: 14px;
    padding: 16px 18px;
    box-sizing: border-box;
    background-color: #16151b;
    border: 1px solid #2d2b33;
    border-radius: 7px;
}

.admin_blacklist_label {
    display: block;
    margin-bottom: 8px;
    color: #d8d6dd;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.admin_blacklist_add_controls {
    display: flex;
    align-items: center;
    gap: 9px;
}

#admin_blacklist_name {
    flex: 1 1 auto;
    min-width: 0;
    height: 42px;
    padding: 0 13px;

    color: #ffffff;
    background-color: #111014;
    border: 1px solid #35323b;
    border-radius: 5px;
    outline: 0;
    box-sizing: border-box;

    font-family: "Manrope", sans-serif;
    font-size: 13px;

    transition:
        border-color ease-in-out 0.18s,
        box-shadow ease-in-out 0.18s;
}

#admin_blacklist_name:focus {
    border-color: #a54550;
    box-shadow: 0 0 0 3px rgba(165, 69, 80, 0.12);
}

#admin_blacklist_add_button {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 16px;

    color: #ffffff;
    background-color: #6b2c34;
    border: 1px solid #a84652;
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;

    transition:
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s;
}

#admin_blacklist_add_button:hover {
    background-color: #853741;
    border-color: #d05b68;
}

#admin_blacklist_add_button:disabled,
#admin_blacklist_name:disabled {
    opacity: 0.5;
    cursor: wait;
}

.admin_blacklist_table_header,
.admin_blacklist_row {
    display: grid;
    grid-template-columns:
        minmax(180px, 1.1fr)
        minmax(130px, 0.75fr)
        160px
        minmax(160px, 0.9fr)
        48px;
    align-items: center;
    column-gap: 14px;
}

.admin_blacklist_table_header {
    min-height: 34px;
    padding: 0 14px;
    color: #716e78;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.admin_blacklist_list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.admin_blacklist_row {
    min-height: 64px;
    padding: 10px 14px;
    box-sizing: border-box;
    background-color: #16151b;
    border: 1px solid #29272f;
    border-radius: 6px;

    transition:
        background-color ease-in-out 0.18s,
        border-color ease-in-out 0.18s;
}

.admin_blacklist_row:hover,
.admin_blacklist_row:focus-within {
    background-color: #1a191f;
    border-color: #54323a;
}

.admin_blacklist_name {
    min-width: 0;
    overflow: hidden;
    color: #ffffff;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.admin_blacklist_value {
    min-width: 0;
    overflow: hidden;
    color: #918e98;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}

.admin_blacklist_actions {
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;

    transition: opacity ease-in-out 0.18s;
}

.admin_blacklist_row:hover .admin_blacklist_actions,
.admin_blacklist_row:focus-within .admin_blacklist_actions {
    opacity: 1;
    pointer-events: auto;
}

.admin_blacklist_remove_button {
    height: 34px;
    width: 34px;
    padding: 0;

    color: #e56c78;
    background-color: rgba(137, 52, 62, 0.12);
    border: 1px solid rgba(224, 93, 107, 0.38);
    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 21px;
    line-height: 1;
    cursor: pointer;
}

.admin_blacklist_remove_button:hover {
    color: #ffffff;
    background-color: #763039;
    border-color: #cf5664;
}

.admin_blacklist_remove_button:disabled {
    opacity: 0.45;
    cursor: wait;
}

@media (max-width: 760px) {
    .admin_blacklist_header,
    .admin_blacklist_add_controls {
        align-items: stretch;
        flex-direction: column;
    }

    #admin_blacklist_add_button {
        width: 100%;
    }

    .admin_blacklist_table_header {
        display: none;
    }

    .admin_blacklist_row {
        grid-template-columns: minmax(0, 1fr) 42px;
        row-gap: 7px;
    }

    .admin_blacklist_name,
    .admin_blacklist_value {
        grid-column: 1;
    }

    .admin_blacklist_value::before {
        content: attr(data-label) ': ';
        color: #696671;
        font-size: 10px;
    }

    .admin_blacklist_actions {
        grid-column: 2;
        grid-row: 1 / span 4;
        opacity: 1;
        pointer-events: auto;
    }
}
