 .main{
    text-align: center;
    margin-bottom: 25px;
    margin-top: 35px;
  }
 .success{
      background-color: #4CAF50;
    width: 20%;
    border: none;
    color: white;
    padding: 9px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
  }
   .error{
    background-color: #cc0000;
    width: 20%;
    border: none;
    color: white;
    padding: 9px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
  }
.next {
  float: right;
  background-color: gray;
  border: none;
  color: white;
  padding: 7px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
  cursor: pointer;
}
* {
  box-sizing: border-box;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 6px 6px 6px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}
.col-10 {
  float: left;
  width: 10%;
  margin-top: 6px;
}
.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
  padding-right: 10px;
}
.col-50 {
  float: left;
  width: 50%;
  margin-top: 6px;
}
.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


  .button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 9px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
#name{
  padding: 5px;
  width: 190px;
  margin-right: 10px;

}
#country{
   padding: 5px;
   width: 90px;
}
#customers {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

#customers th {
    border: 1px solid #ddd;
    padding: 2px;
}
#customers td{
   border: 1px solid #ddd;
    padding-top: 10px;
    font-size: 13px;
    padding-bottom: 10px;
}

#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: center;
    background-color: #4CAF50;
    color: white;
}
.renew_btn{
  text-shadow: #000000 1px 1px 1px;
  font-size: 10pt;
  background-color: #10B725;
  border-style: outset;
  border-width: 2px;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  border-radius: 5px;
  white-space: nowrap;
  padding: 5px 10px 6px 10px !important;
  color: #fff !important;
  text-decoration: none !important;
}
.renew_disable_btn{
   text-shadow: #000000 1px 1px 1px;
  font-size: 10pt;
  background-color: #7d7e7d;
  border-style: outset;
  border-width: 2px;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  border-radius: 5px;
  white-space: nowrap;
  padding: 5px 10px 6px 10px !important;
  color: #fff !important;
  text-decoration: none !important;
  cursor: not-allowed;
}
.note{
  margin-top: 9px;
  color: red;
  text-align: center;
}
.text_center{
  text-align: center;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-10,.col-25, .col-50,.col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}