* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
/* middle */
.midrap{
    width: 100%;
    height: 100vh;
    background-image: url(banner.gif);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 80px;
}
.midrap h1{
    color: white;
    text-align: center;
    padding-top: 20px;
    text-shadow: 2px 2px 4px #000000;
}
.midrap20 {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    font-family: initial;
    font-weight: bold;
    color: rgb(68, 139, 139);
    /* margin-bottom: 30px;
    margin-top: 30px; */
    /* margin-left: 500px; */
  }
  .box20{
    width: 40%;
    margin-left: 400px;
    background-color: rgba(0,0,0,0.5);  
    border-radius: 20px;  
    border: 2px solid black;
    box-shadow: 0 4px 8px 0 rgb(224, 223, 223), 0 6px 20px 0 rgb(211, 206, 206);
  }
  .table {
    /* width: 100px; */
    border-spacing: 10px;
  }
  th {
    text-justify: auto;
    text-transform: capitalize;
    /* border: 2px solid blue; */
  }
  .box{
    width: 145%;
    padding-right: 150px; 
  }
  th,
  td {
    padding: 10px;
    border-bottom: 15px solid transparent;
    /* background-color: #f8f6f6; */
    color: lime;
    font-size: 20px;
    text-shadow: 2px 2px 4px #000000;
    background-clip: padding-box; 
  }
  
  th input{
    padding: 10px;
  }
.body{
    width: 30%;
    margin-left: 30px;
    /* background-color: rgb(236, 230, 230); */
}
.container{
  background-color: goldenrod;
  width: 90%;
}
/* Set a style for all buttons */
button {
    background-color: goldenrod;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
    text-shadow: 0 0 3px #FF0000, 0 0 5px #0000FF;
    border: 1px solid black;
  }
  
  button:hover {
    opacity:1;
    color: orangered;
    border: 1px solid black;
  }
  
  /* Float cancel and delete buttons and add an equal width */
  .cancelbtn, .deletebtn {
    float: left;
    width: 50%;
  }
  
  /* Add a color to the cancel button */
  .cancelbtn {
    background-color: #ccc;
    color: black;
  }
  
  /* Add a color to the delete button */
  .deletebtn {
    background-color: #f44336;
  }
  
  /* Add padding and center-align text to the container */
  .container {
    padding: 16px;
    text-align: center;
  }
  
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: #474e5d;
    padding-top: 50px;
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }
  
  /* Style the horizontal ruler */
  hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
  }
  
  /* The Modal Close Button (x) */
  .close {
    position: absolute;
    right: 35px;
    top: 15px;
    font-size: 40px;
    font-weight: bold;
    color: #f1f1f1;
  }
  
  .close:hover,
  .close:focus {
    color: #f44336;
    cursor: pointer;
  }
  
  /* Clear floats */
  .clearfix::after {
    content: "";
    clear: both;
    display: table;
  }
  
  /* Change styles for cancel button and delete button on extra small screens */
  @media screen and (max-width: 300px) {
    .cancelbtn, .deletebtn {
      width: 100%;
    }
  }