﻿/* @import './styles-generated.css'; */
.valid.modified:not([type=checkbox]) {
    /*outline: 1px solid #26b050;*/
    border-color: #26b050 !important;
}

.invalid {
    /*outline: 1px solid red;*/
    /*border-color: red !important;*/
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.id-field {
    font-weight: bold;
}

.relative {
    /* position: relative;
    overflow-y: auto;
    height: 100vh; */
}

/* to be moved later to ss.css */

.section {
    background-color: #26b050;
    width: 100%;
    padding-bottom: .1em;
    padding-right: .1em;
    padding-left: 0;
    padding-top: 2em;
    border-bottom: 2px solid black;
    font-weight: bold;
    font-size: .97%;
}

#app {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url("../imgs/zenda-center-bac.png");
}

.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hint {
    margin: 1em;
    padding: .5em;
    border-radius: .5em;
    color: black;
    background-color: rgb(248, 198, 192);
    text-align: center;
}

:root {
    --full-side-width: 300px;
    --mini-side-width: 70px;
    --header-height: 50px;
    --trans-speed: .1s;
}

.logo-full {
    display: block;
    height: var(--header-height);
    width: auto;
    /* width: var(--full-side-width); */
}

.logo-mini {
    display: none;
    height: var(--header-height);
    width: var(--mini-side-width);
}

/* 
@media screen and (max-width: 918px) {
    .os-sidebar {
        width: var(--mini-side-width);
        font-size: 90%;
        transition: width var(--trans-speed);
    }

    .os-sidebar>.os-header {
        width: var(--mini-side-width);
        justify-items: center;
        align-self: center;
        transition: width var(--trans-speed);
    }

    .os-content {
        padding-left: var(--mini-side-width);
    }

    .os-content>.os-header {
        left: var(--mini-side-width);
    }

    .logo-full {
        display: none;
    }


    .logo-mini {
        display: block;
    }

    .os-sidebar:hover {
        z-index: 104;
        float: left;
        width: var(--full-side-width);
    }

    .os-sidebar:hover>.os-header {
        width: var(--full-side-width);
    }

    .os-sidebar:hover .logo-mini {
        display: none;
    }

    .os-sidebar:hover .logo-full {
        display: block;
    }
} */