body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.container {
  margin: 10px 20px;
  /* Reduced margin */
  padding: 10px;
  /* Reduced padding */
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  /* Reduced margin */
  font-size: 20px;
  /* Reduced font size */
}

.form-group {
  min-width: 200px; /* Minimum width for smaller screens */
  margin-bottom: 10px; /* Reduced margin */
}

.form-container::after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 30%;
  padding: 10px;
}

#additional_notes {
  width: 100%;
  height: 100px;
  /* Reduced height */
  padding: 5px;
  /* Reduced padding */
  resize: vertical;
  /* Allows vertical resizing */
  border: 1px solid #ccc;
  font-size: 12px;
  /* Reduced font size */
  line-height: 1.2;
  /* Reduced line height */
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 3px;
  /* Reduced margin */
  font-size: 12px;
  /* Reduced font size */
}

input[type="text"],
input[type="email"],
input[type="file"] {
  width: calc(100% - 10px);
  /* Adjusted width */
  padding: 5px;
  /* Reduced padding */
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 12px;
  /* Reduced font size */
}

input[type="submit"] {
  width: 100%;
  padding: 10px;
  /* Reduced padding */
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  /* Reduced font size */
}

select {
  width: calc(100% - 10px);
  /* Adjusted width */
  padding: 5px;
  /* Reduced padding */
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 12px;
  /* Reduced font size */
}

input[type="submit"]:hover {
  background-color: #45a049;
}

#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);
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  /* Adjusted margin */
  padding: 10px;
  /* Reduced padding */
  border: 1px solid #888;
  width: 70%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.cropper-container {
  text-align: center;
}

#cropButton {
  width: 100%;
}

button {
  padding: 5px 10px;
  /* Reduced padding */
  margin: 3px;
  /* Reduced margin */
  cursor: pointer;
  border-radius: 5px;
  background-color: #007bff;
  color: white;
  border: none;
}