body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}

/* Float cancel and delete buttons and add an equal width */
.formbtn {
  float: left;
  background-color: #000;
  color: #ffffff;
  padding: 14px 0;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

.formbtn_cancel{
    width: 50%;
}

/* Add padding and center-align text to the container */
.container {
  padding: 10px;
  text-align: center;
  background-color: #ffffff;  
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: #ffffff;
  padding-top: 50px;
}

/* The Modal Close Button (x) */
.close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
}

.close:hover,
.close:focus {
  color: #f44336;
  cursor: pointer;
}

/* Clear floats */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
  justify-content: center;
}

.container{
  background-color: #ffffff;
}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        /* Change styles for cancel button and delete button on extra small screens */
@media screen and (max-width: 300px) {
  .formbtn {
     width: 100%;
  }
}

