.hr-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.hr-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.hr-form input[type="text"],
.hr-form select,
.hr-form textarea,
.hr-form input[type="file"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 1rem;
  transition: border 0.2s ease;
}

.hr-form input:focus,
.hr-form select:focus,
.hr-form textarea:focus {
  outline: none;
  border-color: #111;
}

.hr-form textarea {
  min-height: 120px;
  resize: vertical;
}

.star-rating {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.star-rating span {
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.star-rating span.active {
  color: #ffb400;
}

.hr-form button {
  display: block;
  width: 100%;
  background: #111;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.hr-form button:hover {
  background: #333;
}

.hr-success {
  padding: 12px 16px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  margin-bottom: 20px;
  color: #155724;
  font-size: 0.95rem;
}

.hr-list {
  display: grid;
  gap: 20px;
  margin: 2rem 0;
}

.hr-item {
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
}

.hr-thumb {
  margin-bottom: 10px;
}
