/* css for the page where users write recommendations and exports pdfs */
body {
    font-family: 'Lato';
    font-size: 10pt;
}

#nccnp {
	display: block;
    width: 12%;
    margin: 0 2%;
	padding-top: 25px;
    padding-bottom: 25px;
}
#buttons {
    display: block;
	margin: 0 2%;
    padding-bottom: 10px;
}
#name {
    border: 2px solid #018eaa;
    border-radius: 4px;
    width: 200px;
    height: 40px;
    padding-left: 1%;
    float: left;
}
#status {
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #018eaa;
    border-radius: 4px;
    width: 200px;
    height: 46px;
    padding-left: 1%;
    margin-left: .25%;
    float: left;
}
#save {
    display: inline-block;
    background-color: #018eaa;
    height: 45px;
    text-align: center;
    color: white;
    font-size: 15px;
    box-sizing: border-box;
    border-width: 2px;
    border-style: outset;
    border-color: buttonface;
    line-height: 40px;
	padding: 0px 12px;
	cursor: pointer;
    float: left;
    transition-duration: 0.4s;
    border-radius: 10px;
}

#saveText {
    color: white;
    line-height: 45px;
    font-size: 18px;
    display: unset;
}

#export {
    display: inline-block;
    background-color: #762F89;
    height: 45px;
    text-align: center;
    box-sizing: border-box;
    border-width: 2px;
    border-style: outset;
    border-color: buttonface;
	padding: 0px 12px;
	cursor: pointer;
    float: left;
    transition-duration: 0.4s;
    border-radius: 10px;
}
#exportText {
    color: white;
    line-height: 40px;
    font-size: 15px;
    display: unset;
}

#back {
    color: #762F89;
    display: inline-block;
    margin-left: 1%;
    margin-top: 1%;
    font-size: medium;
}

#goalArrow {
    color: #762F89;
    display: inline-block;
    margin-left: 1%;
    margin-top: 1%;
    font-size: larger;
}
#warn {
    color: #018eaa;
    margin-left: 2%;
    margin-bottom: 0;
}

#npName {
    text-align: center;
    border: 1px solid black;
    border-bottom: none;
    background-color: #018eaa;
    color: white;
    margin: 0 2%;
    padding-top: 12px;
    padding-bottom: 12px;
}

#npData {
    display: none;
}

#all {
    border: 1px solid black;
    margin: 0 2%;
    height: 325px;
    overflow-y: scroll;
}

#all th, #all td {
    vertical-align: top;
    padding: 0 1%;
    margin: 0;
}

#all td {
    margin-top: 0px;
    border: 1px solid #ddd;
}

.response {
    width: 50%;
}

.recs {
    width: 33%;
}

.goals {
    width: 33%;
}

.collapseGoals {
    width: 50%;
}

.recSteps {
    width: 25%;
}

.goalSteps {
    width:25%;
}
.steps {
    width:25%;
}

#all tr:nth-child(even){
    background-color: #f2f2f2;
}

h3 {
    color: #762F89;
}

.q {
    color: #018eaa;
}

.a {
    margin-left: 2%;
}

p strong{
    font-weight: normal;
    color: #018eaa;
}

.type {
    border: 1px solid black;
    width: 96%;
    height: 100px;
}

.date {
    color: gray;
}

#collapse {
    cursor: pointer;
    border: none;
    background-color: #b7bf35;
    color: white;
    padding: 3px 6px;
    margin-top: .5%;
    position: fixed;
    left: 64%;
}

#collapse2 {
    cursor: pointer;
    border: none;
    background-color: #b7bf35;
    color: white;
    padding: 3px 6px;
    margin-top: .5%;
    position: fixed;
    left: 71.5%;
}

#collapsed {
    cursor: pointer;
    border: none;
    background-color: #b7bf35;
    color: white;
    padding: 3px 6px;
    margin-top: .5%;
    position: fixed;
    left: 47.9%;
}

.hide {
    display: none;
}


::-webkit-scrollbar {
    width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #018eaa;
    border-radius: 10px;
}

/* Style for exported pdf */
/* PT changed. Remove the "PT" to re-enable the print property */
@media print {
    
    body {
        font-size: x-small;
    }

    #nccnp {
        display: none;
    }

    #buttons {
        display: none;
    }

    #npName {
        display: inline-block;
        color: black;
        border: none;
    }
    
    #name {
        display: inline-block;
        color: black;
        border: none;
    }
    
    #npDataPT {
        display: inline-block;
    }
    
    #tips {
        display: none;
    }
    
    .response {
        vertical-align: top;
    }
    
    #collapse, #collapse2, #collapsed {
        display: none;
    }

    table {
        border-collapse: collapse;
    }

    trPT {
        page-break-before: always;
        page-break-inside: avoid;
    }

    .type {
        display: none;
    }
    
    .date {
        display: none;
    }
    
    .deleteButton {
        display: none;
    }

    ::-webkit-scrollbar-track {
        display: none;
    }
}

/* JAS Date - 19 Apr, 2023*/
/* COLLAPSE TABLE CSS START*/
.sub_rows
{
	display: none;
}

.collapse_table_section
{
	padding:0% 2%;
}

.table_width
{
	width:100%;
	margin: unset !important;
}

tr.header {
    cursor: pointer;
    background-color: #f2f2f2;
}

/* COLLAPSE TABLE CSS END*/

/* JAS Date - 27 Apr, 2023*/
.text_area_tiny
{
	cursor: pointer;
}