﻿html, body {
    /*max-width: 100%;
    overflow-x: hidden;*/
}

body {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    background-color: #e6e5e1;
    margin: 0px;
}

h1, h2, h3 {
    font-family: "Amatic SC", cursive;
}

h1 {
    font-size: 46px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0px;
}

select {
    padding: 5px;
}

.mentor_report_form_heading {
    font-weight: bold;
    font-size: large;
    text-decoration: underline;
}

.mentor_report_form_subheading {
    font-weight: bold;
}


/* App Status Classes */

.applicant_list_status {
    color: white;
    padding: 7px 10px;
    border-radius: 3px;
    font-size: smaller;
    font-weight: bold;
    white-space: nowrap;
    cursor: help
}

/* Button Styles */

.button {
    padding: 7px 10px;
    border-radius: 3px;
    color: #f5f5f6;
    cursor: pointer;
    text-decoration: none;
}

.default-btn {
    background: #60c4b8;
}

.create-btn {
    background: green;
}

.delete-btn {
    background: #ed2639;
}

.text-btn {
    cursor: pointer;
    text-decoration: underline;
}

.text-btn:hover {
    color: #60c4b8;
}

#centered_content_container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#centered_content_container_noheight {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation Bars */

.side_nav {
    width: 220px;
    background: white;
    height: 100%;
    box-shadow: 10px 0 8px -10px #888;
    padding: 15px;
    font-family: 'Open Sans', sans-serif;
    display: inline-block;
    position: fixed;
}

.side_nav a {
    display: block;
    text-decoration: none;
    margin-bottom: 5px;
    color: black;
    font-size: 15px;
    padding: 3px;
}

.side_nav i {
    width: 25px;
    text-align: center;
    font-size: 15px;
}

.side_nav a:hover {
    color: #ed2639;
}

.logo_section {
    width: 100%;
    text-align: center;
}

.nav_logo {
    max-width: 120px;  
}

.top_nav {
    width: 100%;
    background: white;
    padding: 15px;
    text-align:right;
}

.top_nav_greeting {

}

/* Landing Page */

#landing_container {    
    width: 50%;
    background: white;
    padding: 15px;
    border: 1px solid black;
    border-radius: 4px;
}

#landing_container_logo {
    text-align: center;
}

#landing_container_logo img {
    max-width: 150px;
}

#landing_container_title {
    text-align: center;
}

#landing_container_subtitle {
    text-align: center;
}

#landing_container_content {
    text-align: center;
    margin-top: 15px;
}

#landing_container_content_left {
    display: inline-block;
    text-align: center;
}

#landing_container_content_right {
    display: inline-block;
    text-align: center;
}

.landing_option_link {
    border-radius: 4px;
    padding: 5px;
    color: white;
    text-decoration: none;
    display:inline-block;
    background-color: #ee2938;
    width: 150px;
    margin: 5px
}

/* Registration Form */

#formMsg {
}

.form_msg_item {
    color: red;
}

#registration_content {
    background: white;
    width: 50%;
    margin: auto;
    padding: 45px;
    border: 1px solid #62c5b8;
}

#registration_form {

}

#registration_form_logo {
    text-align: center;
}

#registration_form_logo img {
    max-width: 200px;
}

.registration_form_section {

}

.registration_form_section_title {

}

.registration_form_row {

}

.registration_form_column {
    display: inline-block;
}

.input_full {
    width: 50%;
    padding: 5px
}

.input_short {
    width: 15%;
    padding: 5px;
}

.input_mini {
    padding: 5px
}

.submit_row {
    margin-top: 20px;
}

.submit_row a {
    text-decoration: none;
    color: white;
    padding: 10px;
    background-color: #ee2938;
    border-radius: 4px;
}

.password_reminder_row {
    margin-top: 10px;
    font-size: small;
}

.password_reminder_row a {
    text-decoration: none;
    padding: 10px;
}

.form_row_info {
    width: 50%;
    font-size: small;
    padding-top: 0px;
}

.form_row_info a {
    display: block;
    line-height: 20px;
}

/* Admin Login */

#login_container, #user_dash_container {
    width: 350px;
    background: white;
    padding: 15px;
    border: 1px solid black;
    text-align: center;
}

#login_container_logo, #user_dash_logo {
    text-align: center;
}

#login_container_logo img, #user_dash_logo img {
    max-width: 150px;
}

.login_row {

}

.login_input_full { 
    padding: 5px;
    width: 75%;
}

/* Mentor Report Form */

#mentor_report_container {
    width: 25%;
    background: white;
    padding: 15px;
    border: 1px solid black;
}

@media only screen and (max-width: 1000px) {
    #mentor_report_container {
        width: 100%;
    }
}

.form_row {
    padding: 5px;
}

.form_row textarea {
    width: calc(100% - 10px);
    resize: vertical;
    min-height: 100px;
}

.form_row_subtext {
    display: block;
    font-size: smaller;
    color: grey;
}

/* Admin Dashboard */

#admin_container {

}

#content_section {
    display: inline-block;
    margin-left: 250px;
    width: calc(100% - 250px);
}

.admin_dash_title {
    font-size: large;
}

.dash_full_width {
    width: calc(100% - 60px);
}

.dash_half_width {
    width: calc(50% - 60px);
}

.admin_dash_content {
    display: inline-block;
    background: white;
    margin: 15px;
    padding: 15px;
    vertical-align: top;
}

.admin_dash_overview h1 {
    font-size: 20px;
}

.section_title {
    font-size: large;
    display: inline-block;
    margin-bottom: 5px;
}

.section_subtitle {
    font-size: small;
    display: block;
    color: grey;
    font-style: italic;
    margin-bottom: 5px;
}

.content_panel {
    padding: 15px;
    margin: 15px;
    border-radius: 2px;
    background: white;
}

.content_head_section {
    margin: 15px;
}

.page_title {
    font-size: x-large;
}

#page_top_section {
    margin-bottom: 10px;
}

/* Applicants table */

.data_table {
    width: 100%;
    text-align: center;
}

.data_table th {
    
}

.data_table tr {

}

.data_table td {
    padding: 15px;
}

.sort-toggle:hover {
    transition: color 0.2s ease-in-out;
    color: #60c4b8;
}

/* Manage applicant screen */

#manage_app_top_section {
    width: 100%;
}

#manage_app_top_left_section {
    width: calc(50% - 5px);
    display: inline-block;
}

#manage_app_top_right_section {
    width: calc(50% - 5px);
    display: inline-block;
    vertical-align: top;
}

.inline_section {
    width: calc(50% - 5px);
    display: inline-block;
    vertical-align: top;
}

.details_section {
    background: white;
    padding: 15px;
    margin: 15px;
}

#applicant_details_section {

}

#induction_section {

}

#status_section {

}

#notes_section {

}

#add_note_section {

}

.applicant_note, .mentor_note, .mentee_note {
    margin: 15px;
}

.applicant_note_title, .mentor_note_title, .mentee_note_title {
    font-weight: bold;
    font-size: larger;
}

.note_subtitle {
    background: #d7d8da;
    padding: 0px 8px;
    display: inline-block;
    border-radius: 3px;
    font-size: smaller;
    line-height: 20px;
}

.applicant_note_footer, .mentor_note_footer, .mentee_note_footer {
    font-size: small;
    font-style: italic;
}

#log_filter {
    
}



.log_error_text {
    font-size: small;
    color: grey;
    margin: 0;
    display: block;
}

#registration_success_content {
    background: white;
    width: 50%;
    margin: auto;
    margin-top: 5%;
    padding: 45px;
    border: 1px solid #62c5b8;
}

#registration_success_logo  {
    text-align: center;
}

#registration_success_logo img {
    max-width: 150px;
}

tr:nth-child(even) {
    background: #f8f8f8;
}

#applicant_details_section_btn, #mentor_details_section_btn, #mentee_details_section_btn {
    float: right;
}

#applicant_details_table, #mentor_details_table, #mentee_details_table {
    width: 100%;
}


.add_applicant_note_row input, .add_mentor_note_row input, .add_mentee_note_row input {
    padding: 5px;
}

#applicant_note_text, #mentor_note_text, #mentee_note_text {
    width: 75%;
    height: 60px
}

#note_text {
    width: calc(100% - 5px);
    min-height: 100px;
    resize: vertical;
}

#induction_date {
    padding: 5px;
}

/* Edit Details Form */

.edit_details_form_left {
    display: inline-block;
    width: 350px;
}

.edit_details_form_right {
    display: inline-block;
    width: 350px;
    vertical-align: top;
}

.edit_details_form_row {
    margin: 5px;
}

.edit_details_form_row select {
    display: inline;
}

.edit_details_dob_container {
    display: flex;
    flex-direction: row;
}

.edit_details_dob_container .edit_details_form_column {
    padding: 0px 2px;
}

.edit_details_form_bottom {
    margin: 15px 0px;
}

/* Dash Stats */

.single_metric_top {
    font-size: x-large;
}

.single_metric_bottom {
    font-size: small;
}

.recent_activity_item {
    display: inline-block;
}

.log_amount {
    font-weight: bold;
}

/* Mentor List */



/* Mentor Alerts */

.alert_importance {
    color: white;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: smaller;
    font-weight: bold;
    white-space: nowrap;
    cursor: default;
}

.log_severity {
    padding: 6px 12px;
    border-radius: 3px;
    color: white;
}

.alert_item {
    padding: 10px;
    margin: 5px 0px;
}

.alert_border_low {
    border: 2px solid #AAAAAA;
}

.alert_border_medium {
    border: 2px solid #FFDC00;
}

.alert_border_high {
    border: 2px solid #FF851B;
}

.alert_border_critical {
    border: 2px solid #FF4136;
}

.alert_date_added {
    font-size: small;
    color: gray;
    float: right;
}

#alert_resolution_modal {
    font-size: smaller;
}

#alert_resolution_text {
    width: 98%;
    height: 200px;
    resize: none;
}

#blue_card_section input{
    padding: 5px;
}

.bluecard_photo {
    max-height: 150px;
    margin: 10px;
}

#password_reminder_modal {
    text-align:center;
}

#password_reminder_email {
    width: calc(100% - 20px);
    padding: 5px;
    margin: 5px;
}

/* */

.assigned_mentee_list_item {

}

.assigned_mentee_unassign_btn {
    color: grey;
    cursor: pointer;
    text-decoration: underline;
    font-size: smaller;
}

.user_dash_title {
    font-size: 30px;
}

/* Mentor Report Items */

.submitted_mentor_report_item {
    margin: 15px;
    border: 1px black solid;
    padding: 15px;
}

.report_item_section {
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
}

.report_item_title {
}

.report_item_subtitle {
   font-weight: bold;
}

.report_footer {
    font-size: small;
    color: grey;
}

.requires_review_text {
    font-weight: bold;
    color: red;
}

.report_item_section ul {
    padding-left: 0px;
    margin: 0px;
    list-style-type: none;
}

/* Status Icons */

.status_icon {
    color: white;
    padding: 7px 10px;
    border-radius: 3px;
    font-size: smaller;
    font-weight: bold;
    white-space: nowrap;
    cursor: help;
}

.alert_icon {
    color: #FF851B;
    cursor: help;
    font-size: larger;
}

.mentor_status_low, .mentee_status_low {
    background-color: #0074D9;
}
.mentor_status_medium, .mentee_status_medium {
    background-color: #FFDC00;
}
.mentor_status_high, .mentee_status_high {
    background-color: #FF4136;
}

.applicant_status_rejected { background-color: #FF4136; }
.applicant_status_new { background-color: #2ECC40; }
.applicant_status_inprogress { background-color: #0074D9; }
.applicant_status_approved { background-color: green; } /* Should never appear */

.log_severity_info { background-color: #AAAAAA; }
.log_severity_debug { background-color: #0074D9; }
.log_severity_warn { background-color: #e8d52e; }
.log_severity_error { background-color: #FF851B; }
.log_severity_critical { background-color: #FF4136; }

.alert_icon_low { background-color: #AAAAAA; }
.alert_icon_medium { background-color: #FFDC00; }
.alert_icon_high { background-color: #FF851B; }
.alert_icon_critical { background-color: #FF4136; }