/* Underline for active nav link */
.nav-active {
    text-decoration: underline !important;
    text-underline-offset: 0.25em;
    color: #007FFF !important;
}
#interview-preview h2:first-child {
    text-indent: 0 !important;
    margin: 0 0 1em 0 !important;
    padding: 0 !important;
}
#interview-preview pre {
    margin-left: 0 !important;
    padding-left: 0 !important;
    margin-top: 0 !important;
}
/* Remove indentation from first line of interview preview (h2) */
#interview-preview h2 {
    text-indent: 0 !important;
    margin-left: 0 !important;
}
/* Flex row for navel. and face on same line */
.navel-row {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    gap: .4em;
    margin-bottom: 1em;
}

/* Header logo and face styles */
.navel-left {
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.04em;
    line-height: 1.1em;
    font-size: 2.2em;
    margin-right: 0.5em;
}
.navel-face {
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.1em;
    text-align: center;
    font-size: 2.2em !important;
}
/* Simplified, responsive header/nav layout */
.header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 3rem;
    margin-left: 15%;
    margin-bottom: 1rem;
}

/* Read More/Read Less button styling */
#read-more-btn {
    background: none;
    color: #007FFF;
    border: none;
    padding: 0;
    font-size: 1em;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    /* margin-top: 14px; */
    text-decoration: underline;
    transition: color 0.2s;
}
#read-more-btn:hover {
    color: #000080;
    background: none;
}
body {
    /* background: #fff; */
    /* color: #000000; */
    font-family: Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    text-align: center;
}
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000080;
    color: white;
    width: 15rem;
    margin-left: 15%;
    padding: 0.5em 2em;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5em;
}
nav a {
    color: #fff;
    text-decoration: none;
}
nav a.nav-active {
    text-decoration: underline !important;
    text-underline-offset: 0.25em;
    color: #fff !important;
    text-decoration-thickness: 2px;
}
nav a:hover{
    color: #007FFF;
    background: none;

}
main {
    max-width: 750px;
    margin: 3rem auto;
    font-size: 16px;
    line-height: 1.75;
}
article {
    margin-bottom: 32px;
    border-bottom: 1px dotted #007FFF;
    padding-bottom: 16px;
}
span {
    font-size: 2.5em;
    font-family: 'Arial';
    line-height: 1em;
    margin: 0;
}

h2 {
    margin: 0 auto;
    position: relative;
    color: #000000;
}

p {
    color: black;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    font-size: 16px;
}

footer {
    text-align: right;
    margin-left: auto;
    margin-right: 15%;
    line-height: 1.5;
    color: white;
    background: #000080;
    width: 20rem;
    padding: 8px;
    border-top: 1px solid #007FFF;
}
input, textarea, select {
    outline: 2px solid #007FFF !important;
    border: 1px solid #007FFF !important;
}

#interview-box {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header { 
        margin-left: 5%;
    }
    nav {
        margin-left: 5%;
    }
    footer {
        margin-right: 0;
    }
    p{
        padding: 2rem;
    }
    #interview-box {
        padding-left: 2em;
        padding-right: 2em;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
}

html {
    font-size: 16px;
}