/* Inputs */
select,
textarea,
input[type="file"] {
  width: 300px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Textarea  */
textarea {
  min-height: 200px;
  resize: vertical;
  line-height: 1.5;
}

/* Buttons */
button {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: #007bff;
  color: white;
  transition: 0.2s;
}

button:hover {
  background: #0056b3;
}

#backBtn {
  display: none;
}

/* Job Card */
.job-card {
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
}

.job-card h3 {
  margin-bottom: 5px;
}

/* Gap Section */
.gap-list {
  margin-top: 10px;
  padding-left: 20px;
}

.gap-item {
  margin-bottom: 5px;
}

/* See More Button */
.toggle-btn {
  margin-top: 10px;
  background: #eee;
  color: #333;
}

.toggle-btn:hover {
  background: #ddd;
}
