.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: inline-block;
  width: 150px;
  text-align: left;
  margin-right: 15px;
}
.form-group input {
  width: 300px;
  padding: 5px;
}
.form-group textarea {
  width: 300px;
  height: 100px;
  padding: 5px;
}
.btn-submit {
  margin-left: 165px;
}

.image-preview {
  border: 1px solid #ddd;
  padding: 10px;
  display: none; /* Hidden initially */
}

.image-preview img {
  max-width: 18%; /* Ensure image doesn't exceed container width */
  height: auto; /* Maintain aspect ratio */
  margin-left: 40%;
}
.dropdown {
  position: relative;
  display: inline-block;
}

/* The content of the dropdown is initially hidden */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 10px;
  z-index: 1;
}

/* The dropdown is visible when its parent has the 'show' class */
.dropdown.show .dropdown-content {
  display: block;
}

/* Optional styling for checkboxes */
.checkbox-group {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.checkbox-group input {
  margin-right: 5px;
}
label {
  margin-right: 8px;
}
.input {
  float: right;
  width: 60%;
}
.nav-link {
  text-align: center;
  padding-left: 6px;
  padding-right: 6px;
  padding-top: 2px;
  padding-bottom: 2px;
  border: 1px solid #211;
  border-radius: 4px;
  color: black;
}
.nav-link:hover {
  background: blue;
  color: white;
}
.btns {
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.success {
  background-color: green;
  margin-top: 2px;
  color: white;
  border: 1px solid black;
  border-radius: 4px;
  text-align: center;
  padding: 4px;
}
.error {
  background-color: red;
  margin-top: 2px;
  color: white;
  border: 1px solid black;
  border-radius: 4px;
  text-align: center;
  padding: 4px;
}
.links {
  width: 366px;
  display: flex;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 6px;
  align-items: center;
  justify-content: space-between;
}
.empwraper {
  max-width: 94%;
  /*  max-height: 34px; */
  display: flex;
  flex-direction: row;
  /* justify-content: space-between; */
  /* padding-right: 240px; */
  padding-left: 20px;
}
.labelinput {
  display: flex;
  margin-top: 45px;
  margin-bottom: 45px;
}
.labelinput select {
  float: right;
}

.formcontainer {
  display: flex;
  /* border: 2px solid #666; */
  height: 100%;
  max-width: 94%;
}

.halfform {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 20px;
  /* border: 2px solid #666; */
}
.quarterform {
  display: flex;
  flex-direction: column;
  width: 25%;
  padding: 10px;
}
.onethirdform {
  display: flex;
  flex-direction: column;
  width: 35%;
  padding: 10px;
}

.mt20 {
  margin-top: 20px;
}
.bold {
  font-weight: bold;
}

/* chart style*/
#legend ul {
  list-style: none;
}

#legend ul li {
  display: inline;
  padding-left: 30px;
  position: relative;
  margin-bottom: 4px;
  border-radius: 5px;
  padding: 2px 8px 2px 28px;
  font-size: 14px;
  cursor: default;
  -webkit-transition: background-color 200ms ease-in-out;
  -moz-transition: background-color 200ms ease-in-out;
  -o-transition: background-color 200ms ease-in-out;
  transition: background-color 200ms ease-in-out;
}

#legend li span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 100%;
  border-radius: 5px;
}
@media print {
  .print-button {
    display: none;
  }
}
