﻿
/* Testing */
/*

    *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100vh;
    height: 100dvh;
}

header {
    border: 1px solid lightblue;
}

.interview-master-container {
    border: 1px solid yellow;
}

.interview-content {
    border: 1px solid purple;
}

footer {
    border: 1px solid lightpink;
}

.interview-nav {
    border: 1px solid green;
}*/

/* End - Testing */


/* || Wrapper
----------------------------------------------------------*/

.interview-wrapper {
    box-sizing: border-box;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
}


/* || Header
----------------------------------------------------------*/

.interview-header-title {
    background-color: white;
    color: navy;
    font-size: 2.8rem;
    font-weight: 300;
    padding-top: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid lightgrey;
}


/* || Master - Container and Children (Menu, Content)
----------------------------------------------------------*/

.interview-master-content, .interview-master-menu {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.interview-master-menu {
    padding: 2rem;
    background-color: #f0f0f0;       /* #eeeeee;  */
    border: 1px solid lightgrey;
}

@media screen and (width >= 600px) {

    .interview-master-container {
        flex: 1;
        margin-top: 3rem;
        overflow-x: hidden;
        overflow-y: hidden;
        /* children */
        display: flex;
        flex-direction: row;
    }

    .interview-master-menu {
        width: 22.5rem;
        padding: 1rem;
    }

    .interview-master-content {
        margin-top: 0;
        margin-left: 4rem;
        flex: 1;
    }
}

@media screen and (width < 600px) {

    .interview-master-container {
        margin: 1rem;
        flex: 1;
        overflow-x: hidden;
        overflow-y: hidden;
        /* children */
        display: flex;
        flex-direction: column;
    }

    .interview-master-menu {
        position: fixed; /* Stay fixed in the viewport */
        z-index: 1; /* Stay on top */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
        max-height: 60vh;
        max-height: 60dvh;

    }

    footer {
        display: none;
/*        margin-top: 4rem;*/
    }
}

/* || Hamburger Menu
----------------------------------------------------------*/

.interview-hamburger-stack-open span {
    background-color: darkgreen;
}

.interview-hamburger-stack-close span {
    background-color: maroon;
}

.interview-hamburger-stack-close i, .account-hamburger-stack-open i {
    color: navy;
}


/* || Interview Menu
----------------------------------------------------------*/


/* || Interview Nav - bottom
----------------------------------------------------------*/

.interview-nav {
    /*   background-color: lightpink;*/
    display: flex;
    flex-direction: row;
    justify-content: end;
    margin-top: 2rem;
    padding: 1rem 0;
    margin-top: auto;
}

.interview-nav-container {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 2rem;
    padding-left: 4rem;
    padding-right: 2rem;
}

@media screen and (width >= 600px) {

    .interview-nav-container {
        width: 67%;
    }

}

@media screen and (width < 600px) {

    .interview-nav-container {
        width: 100%;
    }
}

.interview-nav input {
    display: inline-block;
    min-height: 1.5rem;
    min-width: 8rem;
    padding: 1rem;
    text-align: center;

    /*  background-color: linen;*/
    /*background-color: palegoldenrod;*/
    /*  background-color: lightgoldenrodyellow;*/
    /*   background-color: lightyellow;*/
    /*border-color: darkkhaki;*/

    background-color: gainsboro;
    border-color: grey;
    color: darkblue;
}

.interview-nav-save {
    /* background-color: lightblue;*/
    margin-right: 2rem;
    margin-left: auto;
}

/* accessed from code */
.interview-nav-visible {
    visibility: visible;
}

.interview-nav-hidden {
    visibility: hidden;
}


/* || Footer
----------------------------------------------------------*/

/* || Interview Content
----------------------------------------------------------*/

.interview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.interview-content-stack {
    font-size: 1.4rem;
    width: 100%;
}

    .interview-content-stack ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        list-style: none;
    }

    .interview-content-stack li {
        display: flex;
        flex-direction: row;
        width: 100%;
        margin-top: 0.8rem;
        align-items: center;
    }

        .interview-content-stack li > span {
            width: 40%;
            text-align: right;
        }

            .interview-content-stack li > span + span {
                width: 60%;
                text-align: left;
                margin-left: 1.5rem;
            }

    .interview-content-stack a {
        font-size: 1.2rem;
    }

    .interview-content-stack h2 {
        border-bottom-color: lightblue;    
    }

    .interview-content-stack input[type="text"] {
        text-transform: capitalize;
    }

.interview-content-message {
    color: red;
}

.interview-content-title {
    margin-bottom: 3rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid silver;
    text-align: center;
}

/* || End Interview 
----------------------------------------------------------*/
