/* Health: 
----------
Everything above development bar is essential.
----------------------------------------------- */

.lesson-container {
    margin-top: 60px;
    border: 0px solid red;
    padding: 0 0 1px 0;
}

.menu-toggle {
    margin: 0;
    padding-left: 10px;
    border: 0px solid red;
}



#hamburger {
    cursor: pointer;
    visibility: hidden;
}

/* delays rendering sidebar navigation until sight loads */
.left-column {
    width: 360px;
    position: sticky;
    top: 60px;
    align-self: flex-start;
    visibility: hidden;
}

.widget-buffer {
    padding: 12px;
}

.widget {
    overflow-y: auto;
    max-height: calc(100vh - 60px);
    width: 300px;
    left: 0;
    border-radius: 0;
    border: 0px solid blue;
    padding: 0;
}



#profile-name {
    display: inline-block;
    background-color: aqua;
}

#profile-name-mobile {
    display: none;
}

div.jobs-table-container {
    margin: 0 12px;
    width: auto;
    border: 0px solid blue;
}

table.jobs {
    width: 100%;
    border: 0px solid red;
    /* margin: 12px; */
}

/* these are absolute bounds of content, paragraphs, tables
   (not the margins between it and the sidebars)
   think image width or table border */
.course-content {

    font-size: 16px;
    border: 1px solid green;
    padding: 0;
    margin: 0 auto;
    width: calc(100vw - 360px);
    /* width: 84%; */
    max-width: 740px;

}



/* titles for lessons */
h1.lesson-title {
    font-weight: 600;
    padding-bottom: 20px;
}

/* underline lesson headings */
.ul-heading {
    border-bottom: 1px solid #000;
    padding-top: 25px;
}


/* using for code over white backgrounds */
code.grey {
    background-color: #eee;
    padding: 5px;
    color: #222;
}

.prev-lesson {
    padding: 0;
    display: inline-block;
    width: 48%;
    margin: 15px 0;
    text-align: left;
}

.next-lesson {
    padding: 0;
    display: inline-block;
    width: 48%;
    margin: 15px 0;
    text-align: right;
}

details.solution {
    margin-top: 20px;
}

summary.solution {
    cursor: pointer;
    font-weight: 600;
    font-size: 24px;
    font-family: Josefin Sans;
}

.solution div {
    margin-top: 8px;
}

/* -------------- in development ---------------------- */

h3.coding-problem {
    margin-bottom: 0;
}

h5.coding-problem {
    border-bottom: 1px solid #000;
    padding-top: 25px;
    margin: 8px 0;
}


div.problem-box {
    margin: 0 auto;
    padding: 25px;
    border: 1px solid #ccc;
}

ul.constraints {
    font-family: monospace;
    font-size: 0.8em;
}

.code-editor {
    width: 100%;
    min-height: 300px;

    background-color: #1e1e1e;
    color: #d4d4d4;

    font-family: monospace, Consolas, Monaco, "Courier New";
    font-size: 12px;
    line-height: 1.5;

    padding: 16px;
    border: 1px solid #333;
    border-radius: 6px;

    box-sizing: border-box;
    resize: vertical;

    caret-color: #ffffff;
    outline: none;

    margin-top: 10px;
}

.code-editor::placeholder {
    color: #ccc;
    font-size: 14px;
    font-weight: 400;
}

.code-editor:focus {
    border-color: #de2ee8;
    box-shadow: 0 0 0 2px #de2ee8;
}