/*
 * ORCHARD MINIMAL - Just the essentials
 * 1. Near-black background
 * 2. Pill search bar with glow
 * 3. Gradient search button
 */

/* Near-black background */
body {
  background: #0a0a0f !important;
}

/* Pill search bar with glow */
.search_box {
  border-radius: 50px !important;
  padding: 0.4rem 1.2rem !important;
  border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 255, 255, 0.05) !important;
}

.search_box:focus-within {
  border-color: rgba(255, 255, 255, 0.4) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 4px 30px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 255, 255, 0.15),
    0 0 60px rgba(0, 122, 255, 0.2) !important;
}

/* Gradient search button */
#send_search {
  background: linear-gradient(135deg, #00d9ff, #b84dff) !important;
  border: none !important;
  border-radius: 20px !important;
  box-shadow: 0 2px 8px rgba(0, 217, 255, 0.3) !important;
}

#send_search:hover {
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.5) !important;
}
