.ReloadPrompt-container {
    padding: 0;
    margin: 0;
    width: 0;
    height: 0;
}
.ReloadPrompt-toast {
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 16px;
    padding: 12px;
    border: 1px solid #8885;
    border-radius: 4px;
    z-index: 1;
    text-align: left;
    box-shadow: 3px 4px 5px 0 #8885;
    background-color: white;
}
.ReloadPrompt-toast-message {
    margin-bottom: 8px;
}
.ReloadPrompt-toast-button {
    border: 1px solid #8885;
    outline: none;
    margin-right: 5px;
    border-radius: 2px;
    padding: 3px 10px;
}
/* //$background-color: #f9f8f7; */
/* $background-color: #fff; */
/* $text-color: #73706e; */
/**/
/**/
body,
html {
    margin: 0;
    padding: 0;
    font-family:
        Overpass,
        Segoe UI,
        system-ui,
        -apple-system,
        sans-serif;

    background: #282a36;

    font-size: 14pt;
    color: #80848f;

    height: 100vh;
}

body:after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: env(safe-area-inset-top, 0px);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0)
    );
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    z-index: 100;
}

.card {
    position: relative;
    background: #363949;
    width: 80%;
    margin: 100px auto;
    padding: 2em;
    border-radius: 10px;
}

#root {
    height: 100vh;
    padding-top: env(safe-area-inset-top, 0px);
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.layout-container {
    padding-top: 10px;
}

.page-layout {
    width: 100%;
    height: 100%;
    display: flex;
}

:is(h1, h2, h3, h4, h5, h6) {
    color: #fafdfe;
}

.topBar {
    text-align: right;
    padding: 5px;
    color: #959595;
    font-weight: bold;
    a {
        color: #959595;
        text-decoration: none;
    }
}

.animated-square {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    pointer-events: none;
    background: red;
    display: inline-block;
    box-shadow: 3px 3px 0 0 #600;
    margin-left: 1em;
}

@media (prefers-reduced-motion: no-preference) {
    .animated-square {
        animation: animated-square-spin infinite 5s linear;
    }
}

@keyframes animated-square-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

nav a {
    margin-left: 0.2em;
    margin-right: 0.2em;
    button {
        background-color: #363949;
        border: none;
        color: #ccc;
        font-weight: bold;
        padding: 10px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        /* //margin: 4px 2px; */
        cursor: pointer;
        /* border-radius: 1em; */

        &:hover {
            filter: brightness(1.2);
            transition-duration: 0.2s;
        }
    }
}

.person-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* //border: 1px solid black; */
    & img {
        width: 30px;
        border-radius: 15px;
    }
    .active {
        font-weight: bold;
    }
}

.power-on-btn,
.power-off-btn {
    width: 10em;
    height: 10em;
    margin: 0.5em;
    border-radius: 0.5em;
    color: white;
    border: none;
    padding: 5px;
    height: 130px;
    width: 130px;
    box-shadow: 0 2px 4px darkslategray;
    cursor: pointer;
    transition: all 0.2s ease;
    &:active {
        box-shadow: 0 0 2px darkslategray;
        transform: translateY(2px);
    }
    background-color: cornflowerblue;
}

.power-off-btn {
    filter: brightness(0.7);
}

.loader {
    height: 5rem;
    width: 5rem;
    margin: auto auto;
    animation: spin 2s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}
