/* _content/Ordlaus/Components/FindWord.razor.rz.scp.css */
.overlay[b-9a5eu2knxe] {
    position: absolute;
    inset: 0;
    background: #fff;
    z-index:1;
}

.content[b-9a5eu2knxe] {
    color: #444;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

img[b-9a5eu2knxe] {
    cursor: pointer;
}

label[b-9a5eu2knxe], .label[b-9a5eu2knxe] {
    font-weight:bold;    
}

.label[b-9a5eu2knxe] {
    padding-top:1rem;
}

.slider[b-9a5eu2knxe] {
    display:flex;
    flex-direction:column;
    gap: 1rem;
}

.center[b-9a5eu2knxe] {
    text-align:center;
}

button[b-9a5eu2knxe] {
    padding: 0 1rem;
}

.keyboard[b-9a5eu2knxe] {
    display: flex;
    position: relative;
    flex-direction: column;
    padding: 0;
    margin: 15px 0;
}

    .keyboard .row[b-9a5eu2knxe] {
        display: flex;
        justify-content: center;
    }

    .keyboard button[b-9a5eu2knxe] {
        padding:unset;
    }

button[disabled][b-9a5eu2knxe] {
    background:silver;
    color:gray;
    cursor:not-allowed;
}

button[b-9a5eu2knxe] {
    display: inline-block;
    border: none;
    color:#fff;
    background: #808080;
    margin: 4px 3px;
    font-size: 17px;
    font-weight: bold;
    flex-grow: 1;
    flex-shrink: 1;    
    height: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
}

    button.invalid[b-9a5eu2knxe] {
        background: repeating-linear-gradient(-45deg, #505050, #505050 5px, #3a3a3a 5px, #3a3a3a 10px);
    }

.word-container[b-9a5eu2knxe] {
    --tile-size: 60px;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin:3rem 0 1.5rem 0;
}

.word[b-9a5eu2knxe] {
    display: flex;
    flex-direction: row;
    flex-wrap:wrap;    
}

    .word .character[b-9a5eu2knxe] {
        display: block;
        border: 2px solid #333;
        margin: 2px;
        box-sizing: border-box;
        font-family: sans-serif;
        text-align: center;
        font-weight: bold;
        font-size: calc(var(--tile-size)* 0.6);
        width: var(--tile-size);
        height: var(--tile-size);
        line-height: var(--tile-size);
        cursor:pointer;
    }

        .word .character.present[b-9a5eu2knxe] {
            background: #b3a04e;
        }

        .word .character.correct[b-9a5eu2knxe] {
            background: #5b9256;
        }

.loader[b-9a5eu2knxe] {    
    margin: 15px auto;
    border: 16px solid #f3f3f3; /* Light grey background */    
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin-b-9a5eu2knxe 2s linear infinite;
    display:grid;
    place-content: center;
}

.word-info[b-9a5eu2knxe] {
    font-size:10px;
    margin-bottom:1.5rem;
}

.no-results[b-9a5eu2knxe] {
    background: #c35f2d;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    margin: 15px 0;
}

ul[b-9a5eu2knxe] {
    list-style:none;
    display:flex;
    flex-wrap: wrap;
    margin:0;
    padding:0;
    gap: .5rem;
}

    ul li[b-9a5eu2knxe] {
        background: #5b9256;
        padding: .5rem;
        border-radius: 4px;
    }

.disclaimer[b-9a5eu2knxe] {
    margin-top:2rem;
    font-size:10px;
}

    .disclaimer a[b-9a5eu2knxe] {
        color:#fff;
    }

@keyframes spin-b-9a5eu2knxe {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* _content/Ordlaus/Shared/MainLayout.razor.rz.scp.css */
.wrap[b-dj36pezrfu] {
    margin: 0 auto;
    max-width: 500px;
}

header[b-dj36pezrfu] {
    display: flex;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
    margin-bottom: 15px;
    user-select: none;
}

    header h1[b-dj36pezrfu] {
        font-size: 30px;
        margin: 0;
        outline:none;
    }

        header h1 span[b-dj36pezrfu] {
            color: #444;
        }
