body {
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  max-width: 800px;
  margin: 0 auto; 
  background-color: #dbdbdb;
}

/* BEGIN COLLAPSE SIDEBAR MENU*/
/* Dropdown Button */
.dropbtn {
  background-color: #000000;
  color: white;
  padding: 16px;
  font-size: 12px;
  border: none;
  cursor: pointer;
  padding: 14px 20px;
  margin: 8px 0;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}
/* END COLLAPSE SIDEBAR MENU*/

form {
  border: 0px solid #f1f1f1;
}

input[type=text], input[type=number], input[type=tel], textarea, select {
  width: 100%;
  padding: 7px 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

#height {
  width: 50%;
}

#width {
  width: 50%;
}

#length {
  width: 50%;
}

#save-next {
  background-color: green;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 30%;
}

.print {
  background-color: grey;
  color: white;
  padding: 5px 5px;
  border: none;
  cursor: pointer;
  width: 15%;
  text-align:center
}

.save-rows {
  background-color: green;
  color: white;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align:center
}

.add-rows {
  background-color: blue;
  color: white;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align:center
}

.remove-rows {
  background-color: red;
  color: white;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align:center
}

button:hover {
  opacity: 0.8;
}

.cancelbtn {
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 30%;
  background-color: blue;
}

.noshipmentid {
  width: 30%;
  padding: 10px 18px;
  background-color: blue;
}

.imgcontainer {
  text-align: center;
  margin: 0px 0 24px 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  max-width: 500px;
}

.logointable {
  max-width: 150px;
  height: auto;
}

img.avatar {
  width: 40%;
  border-radius: 50%;
}

.container {
  padding: 16px;
}

span.psw {
  float: right;
  padding-top: 16px;
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
     display: block;
     float: none;
  }
  .cancelbtn {
     width: 100%;
  }
}


/*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<TABLE>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
table {
border: 1px solid black;
  border-collapse: collapse;
  width: 100%;
}

th, td {
  border: 1px solid black;
  padding: 8px;
}

th {
  background: orange;
  color: black;
}

tr:nth-child(even){background-color: #f2f2f2}

#table-item, #th-item, #td-item{
  border: 0px solid black;
  border-collapse: collapse;
}

#td-left, #th-left{
  background: rgb(255, 255, 255);
  text-align: left;
}

#td-right, #th-right{
  background: rgb(255, 255, 255);
  text-align: right;
}

#td-center{
  background: rgb(255, 255, 255);
  border: 0px solid black;
  text-align: center;
}