/* ==========================
   LIST MY BUSINESS PAGE
========================== */
.list-business-page {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  font-family: Arial, sans-serif;
}

.list-business-page header h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.list-business-page header p {
  color: #555;
  margin-bottom: 1.5rem;
}

#listBusinessForm label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #333;
}

#listBusinessForm input,
#listBusinessForm select,
#listBusinessForm textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

#listBusinessForm input:focus,
#listBusinessForm select:focus,
#listBusinessForm textarea:focus {
  outline: none;
  border-color: #ff9900;
}

#listBusinessForm textarea {
  min-height: 120px;
  resize: vertical;
}

#listBusinessForm button[type="submit"] {
  background-color: #ff9900;
  color: #000;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
  margin-top: 0.5rem;
}

#listBusinessForm button[type="submit"]:hover {
  background-color: #ffb84d;
  transform: translateY(-2px);
}

/* Notes / smaller text */
#listBusinessForm .form-note {
  font-size: 0.85rem;
  color: #888;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 768px) {
  .list-business-page {
    padding: 1.5rem;
    margin: 1rem;
  }

  .list-business-page header h1 {
    font-size: 1.5rem;
  }
}
