table {
    width:100%;
    border:1px solid;
    border-collapse: collapse;
    font-family: 'Nexa', sans-serif;
  }

  tr, th, td {
    border:1px solid;
    font-family: 'Nexa', sans-serif;
  }
  
  td {
    background-color:white;
    color: rgb(128,128,128);
    border-color:  rgb(128,128,128);
    text-align:center;
    padding:10px;
    
  }

  th {
    background-color: rgb(40, 127, 194);
    color: white;
    font-weight: normal;
    padding: 20px 30px;
    text-align: center;
    font-size: 15px;
}

  h1 {
    font-family: 'Nexa', sans-serif;
    text-align: center;
    font-size:50px; 
    padding-top: 15px;
}

/*the container must be positioned relative:*/
#plataform {
  margin-right:70px;
  margin-left:10px;
  width:150px;
  position: relative;
  font-family: 'Nexa', sans-serif;
  font-size: 14px;
  padding: 5px;
}

#plataform select {
  display: none; /*hide original SELECT element:*/
}


/*the container must be positioned relative:*/
#genre {
  margin-right:70px;
  margin-left:10px;
  width:150px;
  position: relative;
  font-family: 'Nexa', sans-serif;
  font-size: 14px;
  padding: 5px;
}

#genre select {
  display: none; /*hide original SELECT element:*/
}


caption {
    font-family: 'Nexa', sans-serif; 
}

.fieldTable{
  border:0px solid transparent;
}

.fieldTable td{
  border:0px;
  background-color: white;
  text-align: right;
  color: black;
}

.fieldTable tr{
  border:0px;
  background-color: white;
}


.saveTable{
  border:0px solid transparent;
}

.saveTable td{
  border:0px;
  background-color: white;
  color: black;
}

.saveTable tr{
  border:0px;
  background-color: white;
}


fieldset {
    padding:30px;
    border-radius:10px;
    font-family: 'Nexa', sans-serif;
    margin: 10px;
    background-color: white;
  }
  
  label {
    display:inline-block;
    margin-bottom:10px;
    font-family: 'Nexa', sans-serif;
	  vertical-align:left;
  }
  
  input {
    margin-right:70px;
    margin-left:10px;
    width:150px;
    font-family: 'Nexa', sans-serif;
  }

/* Button stuff*/
/* Button design from https://getcssscan.com/css-buttons-examples . Example 6.*/
button { 
    align-items: center; 
    background-color: #FFFFFF; 
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0; 
    box-sizing: border-box; 
    color: rgba(0, 0, 0, 0.85); 
    cursor: pointer; 
    display:  inline-flex; 
    font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 12px; 
    font-weight: 600; 
    justify-content: center;
    line-height: 1.25;
    margin: 0; 
    min-height: 3rem; 
    padding: calc(.875rem - 1px) calc(1.5rem - 1px); 
    position: relative; 
    text-decoration: none; 
    transition: all 250ms; 
    user-select: none; 
    -webkit-user-select: none; 
    touch-action: manipulation; 
    vertical-align: baseline; 
    width: auto; 
}

button:hover,
button:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
}

button:hover {
  transform: translateY(-1px);
}

button:active {
  background-color: #F0F0F1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}

/* got this from https://www.w3schools.com/howto/howto_js_filter_table.asp*/

#searchForm {
  background-image: url('/css/searchicon.png');
  background-position: 10px 10px;
  background-repeat: no-repeat;
  width: 90%;
  font-size: 16px;
  padding: 12px 20px 12px 40px; /* Add some padding */
  border: 0.5px solid grey; /* Add a grey border */
  margin-bottom: 12px; /* Add some space below the input */
  margin-left: 30px;
}

/* Delete button from https://www.w3schools.com/howto/howto_css_icon_buttons.asp*/
.delete_btn{
    background-color:  rgb(40, 127, 194); /* Blue background */
    border: none; /* Remove borders */
    color: white; /* White text */
    padding: 12px 16px; /* Some padding */
    font-size: 16px; /* Set a font size */
    cursor: pointer; /* Mouse pointer on hover */
}
.headerBtn{
  background-color: rgb(40, 127, 194);
  color: white;
  font-weight: normal;
  font-family: 'Nexa', sans-serif;
  padding: 20px 30px;
  text-align: center;
  border: 0px;
  font-size: 15px;
}
.headerBtn:hover,
.headerBtn:focus {
  border-color: transparent;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0px 0px;
  color: rgba(0, 0, 0, 0.65);
}

.headerBtn:hover {
  transform: translateY(-1px);
}

.headerBtn:active {
  background-color:transparent;
  border-color: transparent;
  box-shadow: rgba(0, 0, 0, 0.06) 0 0px 0px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}