
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
 /* background-color: #F17F1A;*/
}

li a, .dropbtn {
  display: inline-block;
  color: white;
  text-decoration: none;
}

 /* Hover for nav header
 li a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}
*/
li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-content {
  display: block;
}
/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 20px;
 height: 1200px;  /* Should be removed. Only for demonstration */
}

.left, .right {
  width: 20%;
}

.middle {
  width: 70%;
}


/* Create two columns/boxes that floats next to each other 
nav {
  float: left;
  width: 15%;
 height: 650px;
  background: #ccc;
  padding: 20px;
}
*/
/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding: 0;
  background-color: #ccc;
  float: left;

}
nav ul a{
  
  color:Blue;
}



/* Clear floats after the columns */
section:after {
  content: "";
  display: table;
  clear: both;
}




/*Contact us */

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}
input[type=password], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}
input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

/* Style the container/contact section */




/* Clear floats after the columns */


/* For logo nav */
.responsive {
  width: 100%;
  height: auto;
}

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {
  nav, article {
    width: 100%;
    height: auto;
  }
}


/* Table */

#customers {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#customers td, #customers th {
  border: 1px solid #ddd;
  padding: 8px;
}

#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #4CAF50;
  color: white;
}


a:active {
  color: yellow;
} 


.edit{
    width: 100%;
    height: 25px;
}
.editMode{
    /*border: 1px solid black;*/
 
}

.txtedit{
    display: none;
    width: 99%;
    height: 30px;
}

/* Table Layout */
table {
    border:3px solid Black;
    border-radius:3px;
}

table tr:nth-child(1){
    background-color:dodgerblue;
}
table tr:nth-child(1) th{
    color:white;
    padding:10px 0px;
    letter-spacing: 1px;
}

/* Table rows and columns */
table td{
    padding:10px;
}
table tr:nth-child(odd){
    background-color:lavender;
    color:black;
}
table tr:nth-child(even){
    background-color:skyblue;
    color:black;
}