* {
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


/*
Upper Area for Menu
Lower Area for Table and Papaya ////////////////////////////////////////////////////////////////////////////////////////////////////////Specific Area
*/



.modalContent {
    background-color: #fefefe;
    overflow: hidden;
    padding: 20px;
}


/*Close Area*/

.close {
    color: #aaa;
    width: 50px;
    height: 50px;
    font-size: 50px;
    font-weight: bold;
}

.close:hover{
    cursor: pointer;
}


/* Upper Area */

.upperArea{
    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    border: 1px solid lightgray;
    margin-bottom: 10px;
    padding: 10px;
    display: flex;
    justify-content: space-evenly;
}

.upperArea > div {
    display: flex;
    margin-left: 40px;
}

.upperArea .sexSelector {
    display: none;
}

.upperArea > label {
    margin: auto 0 auto 0;
    font-size: large;
}

.radio{
    margin: 15px;
}

.downloadButton {
    width: 200px;
    font-size: 25px;
    height: 50px;
    background-color:lightgray;
    border: none;
    transition: all 0.1s ease;
}

.downloadButton:hover {
    background-color: cadetblue;
}



/* Lower Area */

.lowerArea{
    display: flex;
}

.selector{
    width: 40%;
    height: 50vh;
    /*max-height: 60vh;*/
    border: 1px solid lightgray;
    overflow: scroll;
    padding: 20px;
    padding-right: 10px;
    border-radius: 9px;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    resize: both;
}
.selector::-webkit-scrollbar{
    width: 18px;
}

.selector::-webkit-scrollbar-thumb{
    background-color: lightgray;
    border-radius: 15px;
}


.player {
    width: 60%;
    margin-left: 10px;
    border: 1px solid lightgray;
    overflow: hidden;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    resize: horizontal;
}

.player::-webkit-scrollbar{
    width: 18px;
}

.player::-webkit-scrollbar-thumb{
    background-color: lightgray;
    border-radius: 15px;
}
.playerLabel{
    padding: 10px;
}

.papayaPlayer {
    margin-top: 50px;
}

.dataPlot {
    padding: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    width: 80%;
    min-height: 100px;
    min-width: 100px;
    max-height: 600px;
    max-width: 80%;
    display: none;


    overflow-y: scroll;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    border: 1px solid lightgray;
    border-radius: 10px;
}
.dataPlot::-webkit-scrollbar{
    width: 18px;
}

.dataPlot::-webkit-scrollbar-thumb{
    background-color: lightgray;
    border-radius: 15px;
}

.dataTable {
    padding: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    width: 80%;
    min-height: 100px;
    display: none;
    min-width: 100px;
    max-height: 600px;
    resize: both;
    overflow: scroll;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    border: 1px solid lightgray;
    border-radius: 10px;
}
.dataTable::-webkit-scrollbar{
    width: 18px;
}

.dataTable::-webkit-scrollbar-thumb{
    background-color: lightgray;
    border-radius: 15px;
}













/*Table ////////////////////////////// */

.table {
    margin-top: 3px;
}

th {
    padding: 15px;
    font-size: 20px;
}

th:hover {
    box-shadow: 3px 3px 5px gray;
    border-radius: 15px;
}



td {
    padding: 15px;
    margin: 0;
    border: none;
    font-size: 15px;
}

.tableRow:hover{
    box-shadow: 3px 3px 5px gray;
    border-radius: 15px;
}






/* Radio //////////////////////// */

.radio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

/* Hide the browser's default radio button */
.radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom radio button */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
  }
  
  /* On mouse-over, add a grey background color */
  .radio:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the radio button is checked, add a blue background */
  .radio input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .radio input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .radio .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
  }