/* December 12, 2024 */

/* 💛 #wrong_screen_orientation_blocker [s.WrongScreen] 💛 */
#wrong_screen_orientation_blocker {
    width: 100%;
    height: 100%;
    height: 100vh;
    background-color: #333;
    z-index: 2500;
    position: fixed;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--light-body-bg-color);
}
#wrong_screen_orientation_blocker span {
    font-weight: bold;
    text-decoration: underline;
}

#wrong_screen_orientation_blocker { display: none;}







/* 💛 #container_past_wordles_display [s.PastWordlesDisplay] 💛 */
@media screen and (max-width: 1920px) {
    #container_past_wordles_display {
        width: 30%;
        min-width: 500px;
    }
}

@media screen and (max-width: 1300px) {
    #container_past_wordles_display {
        max-width: none;
        width: 50%;
        min-width: 650px;
    }

}



@media screen and (max-width: 768px) {
    #container_past_wordles_display {
        padding: 32px 40px;
        width: 90%;
        min-width: unset;
        max-width: 700px;
        width: 97%;
    }

    #container_past_wordles_display .content_main { padding-left: 4px;}
}

@media screen and (max-width: 430px) {
    #container_past_wordles_display {
        outline: 1px solid rgba(50,50,50,.5);
        width: 92%;
        width: 96%;
        padding: 24px 16px 28px;
        min-width: calc((80px * 4) + 23px + (16px * 2));
        max-height: calc(100vh - 284px - 10px);
        bottom: 18px;
        min-width: unset;
    }

    #container_past_wordles_display .content_main { padding-left: 6px;}

    #container_past_wordles_display .previous_wordle_word {
        display: none;
        transition: display 0.2s 4s;
    }
    #container_past_wordles_display.active .previous_wordle_word {
        display: inline-flex;
        transition: display 0.4s 4s;
    }

}