/* /Components/Key.razor.rz.scp.css */
.tile-content[b-s48oxcl7ll] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
}

.slash.slash1[b-s48oxcl7ll] {
    margin-left: 5px;
    margin-bottom: 0;
    transform-origin: left bottom;
    transform: rotate(-45deg);
}

.slash.slash2[b-s48oxcl7ll] {
    margin-left: -5px;
    margin-bottom: 0;
    transform-origin: bottom right;
    transform: rotate(45deg);
}
/* /Components/Tile.razor.rz.scp.css */
/* entire container, keeps perspective */
.flip-container[b-ln4o27hku2] {
    perspective: 1000px;
}

/* flip the pane */
.doflip[b-ln4o27hku2] {
    transform: rotateX(180deg);
}

.flip-container[b-ln4o27hku2], .front[b-ln4o27hku2], .back[b-ln4o27hku2] {
    width: 64px;
    height: 64px;
    margin: 1px 0 1px 0;
}

/* flip speed goes here */
.flipper[b-ln4o27hku2] {
    position: relative;
    transition:.6s; /* "none" -> ".9s" (default = .6s) */
    transform-style: preserve-3d;
    transform-origin: 100% 34px; /* half of height plus margin */
}

/* hide back of pane during swap */
.front[b-ln4o27hku2], .back[b-ln4o27hku2] {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

/* front pane, placed above back */
.front[b-ln4o27hku2] {
    transform: rotateX(0deg);
}

/* back, initially hidden pane */
.back[b-ln4o27hku2] {
    transform: rotateX(180deg);
}

.tile-content[b-ln4o27hku2] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem; 
    width: 4rem; 
}

.slash.slash1[b-ln4o27hku2] {
    margin-left: 11px;
    margin-bottom: 8px;
    transform-origin: left bottom;
    transform: rotate(-45deg);
}
.slash.slash2[b-ln4o27hku2] {
    margin-left: -11px;
    margin-bottom: 8px;
    transform-origin: bottom right;
    transform: rotate(45deg);
}
/* /Pages/OptionsPopup.razor.rz.scp.css */
.setting-row[b-kq64n4xyru] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin: 0.5rem 0;
    padding: 0.5rem;
    background-color: #1a1a1a;
    border-radius: 0.5rem;
}

.setting-left[b-kq64n4xyru] {
    flex: 1;
}

    .setting-left h2[b-kq64n4xyru] {
        font-size: 1.25rem;
        margin: 0;
    }

    .setting-left p[b-kq64n4xyru] {
        font-size: 0.875rem;
        margin: 0;
        color: #ccc;
    }

.setting-right[b-kq64n4xyru] {
    display: flex;
    align-items: center;
}

.switch[b-kq64n4xyru] {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

    .switch input[b-kq64n4xyru] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider[b-kq64n4xyru] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #555;
    transition: 0.4s;
    border-radius: 20px;
}

    .slider[b-kq64n4xyru]:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 2px;
        bottom: 2px;
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
    }

input:checked + .slider[b-kq64n4xyru] {
    background-color: #4caf50;
}

    input:checked + .slider[b-kq64n4xyru]:before {
        transform: translateX(20px);
    }

.textbox[b-kq64n4xyru] {
    width: 75px;
    height: 30px;
    background-color: black;
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    font-size: 1rem;
    accent-color: #458e37;
    text-align: center;
}
