#job-submission-form .row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

#job-submission-form .field {
  flex: 1 1 calc(50% - 15px); /* Chia đều hai trường một hàng */
  display: flex;
  flex-direction: column;
}

#job-submission-form label {
  margin-bottom: 5px;
}

#about_company {
  width: 100%; /* Đặt chiều rộng toàn bộ */
  max-width: 100%; /* Ngăn vượt quá khung cha */
  height: 100px; /* Đặt chiều cao */
  resize: vertical; /* Cho phép người dùng thay đổi chiều cao */
  overflow-y: auto; /* Thêm thanh cuộn dọc nếu nội dung vượt quá */
  padding: 10px; /* Khoảng cách nội dung bên trong */
  border: 1px solid #ddd; /* Viền nhạt */
  border-radius: 4px; /* Bo tròn góc */
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px; /* Kích thước chữ */
  line-height: 2.5; /* Khoảng cách dòng */
}

#job_description {
  width: 100%; /* Đặt chiều rộng toàn bộ */
  max-width: 100%; /* Ngăn vượt quá khung cha */
  height: 300px; /* Đặt chiều cao */
  resize: vertical; /* Cho phép người dùng thay đổi chiều cao */
  overflow-y: auto; /* Thêm thanh cuộn dọc nếu nội dung vượt quá */
  padding: 10px; /* Khoảng cách nội dung bên trong */
  border: 1px solid #ddd; /* Viền nhạt */
  border-radius: 4px; /* Bo tròn góc */
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px; /* Kích thước chữ */
  line-height: 2.5; /* Khoảng cách dòng */
}

#job-submission-form input,
#job-submission-form select,
#job-submission-form textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Nút Submit */
#job-submit {
  width: 100%;
  background-color: #4a7d91;
  color: #fff;
  border: none;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
}

#job-submit:hover {
  background-color: #005f8d;
}

/* Loading spinner */
#loading-spinner {
  text-align: center;
  margin-top: 10px;
}

#loading-spinner img {
  width: 30px;
  height: 30px;
}

/* Preview cho Logo */
#logo-preview img {
  margin-top: 10px;
  display: block;
  border: 1px solid #ddd;
  border-radius: 4px;
  object-fit: cover;
}

/* Preview cho Additional Files */
#additional-files-preview p {
  background-color: #f3f3f3;
  padding: 8px;
  margin: 5px 0;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ccc;
}

/* Fieldset nhóm */
fieldset {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
}

fieldset legend {
  font-size: 14px;
  font-weight: bold;
  color: #4a7d91;
}

.remove-file-job {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: red;
  margin: 0;
  padding: 0;
}

.remove-file-job:hover {
  text-decoration: underline;
}

.job-attachments ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-attachment-item {
  margin-bottom: 8px;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
}

.job-attachment-link {
  color: #4a7d91;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.job-attachment-link:hover {
  text-decoration: underline;
}

.job-attachment-icon {
  margin-right: 8px;
  font-size: 16px;
  color: #4a7d91;
}

.line-separator {
  width: 100%; /* Chiều rộng đường kẻ ngang */
  height: 1px; /* Độ dày của đường */
  background-color: #ddd; /* Màu sắc đường kẻ */
  margin-bottom: 10px; /* Khoảng cách dưới đường kẻ */
}

.file-item {
  margin-bottom: 10px;
}

input#additional_files,
input#logo_company {
  border: 2px dashed #ccc;
}

#job-posts-list {
  margin: 0;
  padding: 0;
}
