#scp-contact-form {
  max-width: 800px;
  margin: auto;
}

#scp-contact-form label {
  display: block;
  margin: 10px 0 5px;
}

#scp-contact-form input,
#scp-contact-form select,
#scp-contact-form textarea,
#scp-contact-form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea#scp-description,
input#additional_files_contact,
input#scp-order-id,
input#scp-product-id,
input#scp-product-url {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px; /* Kích thước chữ */
  width: 97%;
}
input#additional_files_contact {
  border: 2px dashed #ccc;
}
#scp-contact-form button {
  background-color: #4a7d91;
  color: white;
  cursor: pointer;
}

#scp-contact-form button:hover {
  background-color: #005177;
}

#additional-files-preview_contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.file-item {
  position: relative;
  width: 100px;
  text-align: center;
}

.file-item img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.remove-file {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}
