#contact-header {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  text-align: center;
  border-radius: 3px;
  background-color: transparent;
  margin: 10px auto 0;
  padding: 10px;
}

#contact-header img {
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

#contact-header p {
  display: inline-block;
  vertical-align: middle;
  line-height: 30px;
}

#contact-anchor {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  text-align: left;
  border-radius: 8px;
  background-color: #f0f0f0;
  margin: 0 auto 30px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

#contact-anchor h2,
#contact-anchor h6 {
  text-align: center;
}

#msg-success {
  color: #08ce01;
}

#msg-error,
#msg-required,
#file-size-error {
  color: red;
  font-size: 14px;
  border: solid 1px red;
  background-color: rgba(255, 103, 103, 0.527);
  line-height: 1em;
  padding: 2px 5px;
  border-radius: 2px;
}

#contact-anchor hr {
  width: 90%;
  height: 1px;
  margin: 0 auto 10px;
  background-color: #aaaaaa;
  border: none;
}

#contact-anchor label {
  display: block;
  margin-left: 5px;
}

#contact-anchor input {
  width: 100%;
  background-color: white;
  border: 2px solid transparent;
  margin: 0 0 10px;
  padding: 10px;
  font-size: 16px;
  border-radius: 3px;
  transition: border-color 0.3s ease;
}

#contact-anchor input:focus {
  border-color: #777777;
}

#contact-anchor select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background-color: white;
  border: 2px solid transparent;
  border-radius: 3px;
  transition: border-color 0.3s ease;
}

#contact-anchor select:focus {
  border-color: #777777;
}

#contact-anchor textarea {
  width: 100%;
  resize: none;
  background-color: white;
  height: 5em;
  padding: 10px;
  border: 2px solid transparent;
  border-radius: 3px;
  transition: border-color 0.3s ease;
}

#contact-anchor textarea:focus {
  border-color: #777777;
}

#contact-anchor .submit-button {
  display: block;
  margin-left: auto;
  background-color: #363636;
  border-radius: 3px;
  margin-top: 10px;
  color: white;
  font-size: 18px;
  padding: 5px 20px;
  text-align: center;
  transition: background-color 0.3s ease;
}

#contact-anchor .submit-button:hover {
  background-color: #666666;
  cursor: pointer;
}

.flex-spacebetween {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#upload-location {
  display: block;
  width: 100%;
  line-height: 24px;
  margin: 0 !important;
  cursor: pointer;
}

#upload-location:hover {
  background-color: #e0e0e0;
}

#upload-btn {
  float: right;
  display: inline-block;
  font-size: 14px;
  background-color: #363636;
  color: white;
  border-radius: 3px;
  text-align: center;
  padding: 2px 5px;
  transition: background-color 0.3s ease;
}

#upload-btn:hover {
  background-color: #777777;
  cursor: pointer;
}

@media screen and (max-width: 900px) {
  #contact-anchor {
    width: 90%;
  }

  #contact-header img {
    height: 20px;
  }
}

@media screen and (max-width: 500px) {
  #contact-anchor {
    width: 100%;
  }

  #order-no {
    width: 30% !important;
  }

  #contact-anchor .submit-button {
    padding: 5px 10px;
  }
}
.top-right-content {
  position: fixed;
  top: 100px;
  right: 10px;
  max-width: max-content;
  max-height: max-content;
  padding: 10px; /* Add padding as needed */
    color: #212529; /* Text color */
  transition: 0.3s ease; /* Smooth background color transition */

}

.top-right-content:hover {
  cursor: pointer; /* Change cursor to a pointer on hover */
}