body {
    font-family: roboto, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    background: rgba(249,248,248,1.0);
    color: rgba(0,0,0,1.0);
    margin: 0;
    padding: 0;
}

a:link {text-decoration:none; color:rgba(0,0,0,1.0);}
a:visited {text-decoration:none; color:rgba(0,0,0,1.0);}
a:hover {text-decoration: none;}
a:active {text-decoration: none;}

.nav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgba(226,225,225,1.0);
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
}

.nav a {
    text-decoration: none;
    color: rgba(56,55,55,1.0);
    display: inline-block;
    transition: 0.3s;
}

.nav a:hover {color:rgba(1,0,0,1.0);}

.nav p {
    padding: 4px 8px 4px 8px;
}

.nav .closebutton {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 300%;
    margin-left: 50px;
}

#main {
    transition: margin-left 0.5s;
    padding: 20px;
}

@media screen and (max-height: 450px) {
    .nav {padding-top: 15px;}
    .nav a {font-size: 18px;}
}

.nav_expand {font-size: 133%;}
.nav_expand:hover {color:rgba(0,0,255,1.0);}

.logo {width: 12rem;}

.nav_container {margin-left: 1rem;}

.lv1 {
    font-family: roboto, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 125%; 
    margin-top: 1rem; 
}
.lv2 {margin-left: 1rem; font-size: 115%; margin-top: .5rem;}
.lv3 {margin-left: 3rem; font-size: 105%; margin-top: .33rem;}
.lv4 {margin-left: 5rem; font-size: 95%; margin-top: .25rem;}
.lv5 {margin-left: 7rem; font-size: 85%; margin-top: .125rem;}

#breadcrumbs {
    display: block;
    margin: 2em;
}

.breadcrumb_item, .breadcrumb_chevron {
    display: inline-block;
    font-size: 100%;
}

.breadcrumb_chevron {margin: 0 1rem;}

.flex_container {display: flex;}

.stats {
    white-space: nowrap;
    overflow-x: hidden;
}

.stats_status {
/*     vertical-align: middle; */
    margin-left: 2rem;
    margin-right: 2rem;
    display: inline-block;
}

.stats_status_top {
/*     font-style: italic; */
}

.stats_status_bottom {
    font-style: italic;
    font-weight: 700;
    font-size: 150%;
}

.stats_item {
    display: inline-block;
    margin: 0 3rem;
}

.stats_number {
    text-align: center;
    font-weight: 700;
    font-size: 200%;
}

.stats_caption {
    text-align: center;
}

.recent_content {
    margin-left: 4rem;
    margin-right: 4rem;
}

.recent_file_name {margin: 0 0 0 1rem; display: inline-block;}

.recent_caption {margin-top: 0; padding-top: .2rem; font-size: 85%;}

.click_region, recent_caption {
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 0;
    padding-bottom: 0;
    border: 2px solid magenta:
}

.click_region i, .click_region p {display:inline-block;}

#current_project {
    font-size: 250%;
    margin: 1rem;
    font-weight: 700;
}

.kanban_container {
    overflow-x: scroll;
/*     width: 98%; */
    height: 60rem;
    border: 2px solid red;
    display: flex;
    white-space: nowrap;
}

.kanban_board {
    display: inline-block;
    width: 25rem;
/*     height: 98%; */
    white-space: nowrap;
    border: 2px solid rgba(230,0,0,1);
}

.kanban_board_title {
    font-family: roboto, sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 175%;
}

.task {
    width: 100%;
    /* ----------------------------------------------------------- remove to finalize --- */
    height: 10rem;
}

.task_lv1 {
    flex-direction: column;
    /* ----------------------------------------------------------- remove border to finalize --- */
    border: 2px solid purple;
}

.task_lv2 {
    flex-direction: row;
    /* ----------------------------------------------------------- remove border to finalize --- */
    border: 2px solid orange;
}

.task_project, .task_category, .task_section {
    /* ----------------------------------------------------------- remove border to finalize --- */
    border: 2px solid cyan;
    flex-grow: 1;
    vertical-align: bottom;
    /* ----------------------------------------------------------- remove to finalize --- */
    height: 10rem;
    font-size: 85%;
}

.task_project {
    text-align: left;
    font-weight: 700;
    font-style: normal;
    font-size: 133%;
}
.task_category {text-align: center; width:30%;}
.task_section {text-align: right; width:30%;}

.task_collaborators {
    margin: 1rem .2rem;
    justify-content: space-around;
}

.task_collaborator {
    display: inline-block;
    margin: 0 0.4rem;
    font-size: 150%;
    padding: 0;
}

.task_status_description, .task_status_percentage {
    /* ----------------------------------------------------------- remove border to finalize --- */
    border: 2px solid cyan;
    align-items: flex-end;
    margin-bottom: 0;
    height: 10rem;
}

.task_status_description {
    flex-grow: 1;
    font-size: 85%;
}
.task_status_percentage {
    text-align: right;
    font-size: 125%;
    font-weight: 500;
}

.ahead_of_schedule {background-color: rgba(52,168,83,1.0);}
.awaiting_client_response {background-color: rgba(166,77,121,1.0);}
.on_schedule {background-color: rgba(251,188,4,1.0);}
.awaiting_team_member_action {background-color: rgba(103,78,167,1.0);}
.behind_schedule {background-color: rgba(234,67,53,1.0);}













