
/* בסיס */
#health-calculator-root * {
  box-sizing: border-box;
  direction: rtl;
  font-family: "Heebo", Arial, sans-serif;
}

/* קונטיינר */
.hc-container {
  max-width: 650px;
  margin: auto;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* כותרת */
.hc-title {
  font-size: 26px;
  font-weight: bold;
  color: #004d40;
  margin-bottom: 16px;
}

/* פסקאות ורשימות */
.hc-p {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
}

.hc-list {
  padding-right: 20px;
  margin-bottom: 16px;
  color: #444;
}

.hc-list li {
  margin-bottom: 6px;
}

/* כפתורים */
.hc-button {
  background: #26a69a;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hc-button:hover {
  background: #1d7e72;
}

/* שדות קלט */
.hc-input,
.hc-select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* כרטיס חברה */
.hc-company-card {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 14px;
  margin: 12px 0;
  background: #f9f9f9;
}

.hc-company-highlight {
  border: 2px solid #26a69a;
  background: #e0f2f1;
}

/* רספונסיביות */
@media (max-width: 480px) {
  .hc-title {
    font-size: 22px;
  }

  .hc-button {
    width: 100%;
    font-size: 16px;
  }
}
