/* Guest Layout: */
@import '/stylesheets/main.css';


body {
    height: 100%;
    width: 100%;
    overflow: hidden
}

.header {
    width: 100%;
    border-bottom: solid 1px #dadada;
    min-height: 90px;
    padding: 15px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background-color: white;
    top: 0;
    right: 0;
}

.Logo {
    height: 100%;
    position: unset;
    cursor: pointer;
} 

.options {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;   
    gap: 35px;
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.navItem {
    color: black;
    text-decoration: none;
}

.navItem:hover {
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
}

.navOption {
    background-color: var( --color-primary);
    color: white;
    width: 150px;
    height: 50px;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 15px;
}

.navOptionSeltcted {
    width: 100%;
    height: 50px;
    background-color: var(--color-grey);
    vertical-align: middle;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 15px;
    box-sizing: border-box;
    padding: 20px;
    font-weight: bold;
}

.navOption:hover {
    background-color: var(--color-grey);
    cursor: pointer;
    color: black;
}

.profile {
    height: 100%;
}

.screen {
    width: 100%;
    height: 100%;
    overflow: auto;
    max-height: 100vh;
}

.bodyScreen {
    max-height: 100vh;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    margin-top: 120px;
}

@media (max-width: 500px) {
    .options {
        display: none;
    }  
    .bodyScreen {
        height: 90vh;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        margin-top: 120;
    }        
}