/* ===== PHARMACY DASHBOARD ===== */

.auth-card {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

/* FORM */
#patientForm label {
  display: block;
  font-weight: 600;
  margin: 14px 0 6px;
}

#patientForm input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  transition: 0.2s;
}

#patientForm input:focus {
  border-color: #ff7a00; /* matches your orange theme */
}

/* symptoms-chips (SYMPTOMS) */
.symptoms-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.chip {
  padding: 6px 12px;
  background: #f3f3f3;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s;
}

.chip:hover {
  background: #ffe8d6;
}

.chip.active {
  background: #ff7a00;
  color: #fff;
}

/* RIGHT PANEL */
.auth-card h3 {
  margin-bottom: 10px;
}

.auth-card ul {
  padding-left: 18px;
}

.auth-card ul li {
  margin-bottom: 8px;
}

/* RESULTS */
#resultsSection {
  margin-top: 40px;
}

#resultsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* PRODUCT CARD (reuse feel of your site) */
/* PRODUCT CARD IMPROVED DESIGN */

.product-card {
  border: 1px solid #eee;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover {
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

/* HEADER */
.product-header .category {
  font-size: 11px;
  font-weight: 700;
  color: #ff7a00;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-header .title {
  font-size: 18px;
  margin: 4px 0;
}

.product-header .desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 14px;
}

/* DOSAGE + ONSET */
.product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.meta-box {
  background: #eef2f7;
  padding: 10px;
  border-radius: 10px;
}

.meta-box span {
  font-size: 10px;
  font-weight: 700;
  color: #4a6fa5;
  display: block;
  margin-bottom: 4px;
}

.meta-box p {
  font-size: 13px;
  margin: 0;
}

/* WARNING */
.warning-box {
  background: #fdecea;
  color: #c0392b;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* BUTTON */
.product-card .btn {
  margin-top: auto;
  border-radius: 10px;
}


