<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Copyright (c) Dr. Heba Sailem 2021*/


.modal{
    width: 60%;
    position: absolute;
    background-color: #474747;
    border: 1px solid black;
    border-radius: 10px;
    margin: 0 auto;
    left: 0;
    right: 0;
    padding: 10px;
    z-index: 9999999999999999999;
    padding-bottom: 0;
    opacity: 0;
    transform: translateY(-1000px);
    transition: 0.7s ease-out;
    overflow: auto;
}

textarea{
    width: 100%;
}


.modal&gt;label{
    display: block;
    margin: 20px;
}

.modal&gt;div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.modal button{
    display: block;
    color: white;
    background-color: #252525;
    margin: 10px auto;
    border: 1px solid transparent;
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
}

.modal button:hover{
    background-color: black;
}

.modal input:not([type="checkbox"]):not([type="radio"]){
    width: 95%;
    border: 1px solid white;
    border-radius: 10px;
    padding: 10px;
}

.close-icon{
    position: absolute;
    top: 0;
    right: 0;
    margin: 5px;
    z-index: 101;
}

.close-icon2{
    position: absolute;
    top: 0;
    right: 0;
    margin: 5px;
    color: #252525;
    z-index: 101;
}

.close-icon:hover,.close-icon2:hover{
    color: red;
}

.message-div{
    display: block !important;
}
.message-div label{
    display: block;
    width: 40%;
    margin: 10px auto;
}

.message-div input:not([type="checkbox"]) {
    width: 60%;
}

.message-div button{
    width: 20%;
}

.message-div textarea{
    margin: 10px auto;
}

#heatmap-modal{
    width: 90%;
    color: black;
    background-color: white;
    overflow: hidden;
}

#citation-modal{
    background-color: white;
    color: black;
}

#citation-modal&gt;p{
    line-height: 1.3em;
    font-size: 20px;
    font-family: "Cairo";
    width: 80%;
    margin: 10px auto;

}

#citation-modal a{
    color: darkred;
    text-decoration: none;
}

#citation-modal button{
    background-color: white;
    color: black;
    border: 1px solid black;
}

#citation-modal button:hover{
    background-color: lightgrey;
}

#survey-modal button{
    width: 20%;
}

#survey-modal label{
    display: block;
    margin: 5px;
}

#dataset-modal{
    width: 90vw;
    height: 80%;
    padding: 10px;
}

#dataset-modal label{
    margin: 0;
}

#overflowdiv{
    overflow: auto;
}

#datasetTable, td, th{
    border: 1px solid white;
    border-collapse: collapse;
    color: white;
}

#datasetTable{
    min-width: 100%;
    max-height: 100%;  
    margin-top: 15px;
}

#datasetTable td{
    text-align: center;
    min-width:60px;
}

#datasetTable th{
    background-color: #b50707;
    padding:4px;
    min-width:75px;
}

.table-header{
    position: relative;
}

.header-text{
    position: fixed;
    background-color: black;
    color: white;
    padding: 6px;
    border: 1px solid transparent;
    border-radius: 10px;
    top: 10px;
    left: 0;
    right: 0;
    min-width: 90%;
    z-index: 9999;
    box-sizing: border-box;
    display: none;
}

.table-header:hover .header-text{
    display: inline-block;
}

#yt-embed{
    display: block;
    width: 600px !important;
    height: 380px !important;
    margin: 10px auto;
}
</pre></body></html>