body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}

input[type=text], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
input[type=password], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
input[type=date],select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
input[type=checkbox], select {
  /* width: 100%; */
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}


.menuitem {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.menuitem:hover {
  background-color: #45A049;
}

.menuitem.red {
  background-color: #CC0A0A;
}
.menuitem.red:hover {
  background-color: #B60A0A;
}

.button {
  width: auto;
  background-color: #4CAF50;
  color: white;
  padding: 10px 8px;
  margin: 0px 0;
  margin-top: 5px;
  margin-bottom: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
.button:hover {
  background-color: #45A049;
}
.button.blue {
  background-color: #1E90FF;
}
.button.blue:hover {
  background-color: #007FF6;
}
.button.red {
  background-color: #CC0A0A;
}
.button.red:hover {
  background-color: #B60A0A;
}

input[type=submit].button {
  width: auto;
  padding: 10px 8px;
  margin: 0px 0;
}

div {
  border-radius: 5px;
  padding: 20px;
}
div.container {
  margin: auto;
  width: 1200px;
  text-align: left;
}
div.containernarrow {
  margin: auto;
  width: 600px;
  text-align: center;
}
div.panel {
  background-color: #f2f2f2;
}
table {
  background-color: #ffffff;
  border-collapse: collapse;
  width: 100%;
}
td, th {
  border: 1px solid #dddddd;
  text-align: left;
  font-size: small;
  padding: 8px;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 256px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 10px 10px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -134px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}