/* 
     this file will contain most of css styles that I will apply to this app
 */

table {

  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #f6f3f3;
}
#upload-button{
    color: white;
    padding: 15px 32px;
    margin-bottom: 10px;
    margin-left: 90%;
    border: none;
}


.modal {
  display: none; 
  position: fixed; 
  z-index: 1; 
  margin-left: auto;
  margin-right: auto;
  top: 0;
  width: 50%; 
  height: 50%; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
}


.modal-content {
  background-color: #fefefe;
  margin: 15% auto; 
  padding: 20px;
  border: 1px solid #888;
  width: 80%; 
}


.close {
  color: #ea0808;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}