body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  margin-bottom: 30px;
}

.form-container {
  padding: 20px;
}

.form-group {
  margin-bottom: 20px;
}

#additional_notes {
  width: 100%;
  height: 150px;
  padding: 10px;
  resize: vertical; /* Allows vertical resizing */
  border: 1px solid #ccc;
  font-size: 14px;
  line-height: 1.5;
}

/* Optional: Style for the label */
label[for="additional_notes"] {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="file"] {
  width: calc(100% - 12px);
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

input[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

select {
  width: calc(100% - 12px);
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* Optional: Style for the label of select */
label[for="company_list"] {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

/* Style for the modal container */
#imageModal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
}

/* Style for the modal content */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 70%; /* Adjust the width of the modal content */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

/* Style for the cropper container */
.cropper-container {
  text-align: center;
}

#cropButton {
  width: 100%;
}

/* Style for buttons */
button {
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  background-color: #007bff; /* Change button color */
  color: white;
  border: none;
}
