/* ===== EMPTY SEARCH STATE ===== */
.empty-search {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}

.empty-search .emoji {
  font-size: 56px;
  margin-bottom: 16px;
  display: block;
}

.empty-search h3 {
  font-family: var(--font);
  font-size: 20px;
  color: var(--green-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.empty-search p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.5;
}

.empty-search-form {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

/* Style the textarea generated by request_form.request_text */
.empty-search-form .form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  margin-bottom: 16px;
}

.empty-search-form .form-control:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(61, 107, 61, 0.15);
}

.empty-search-form .form-control::placeholder {
  color: var(--text-light);
}

/* Custom request button (replaces btn btn-success) */
.btn-request {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: var(--green-mid);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.btn-request:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-request:active {
  transform: translateY(0);
}