body {
  background-color: #fff3e0;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  font-family: sans-serif;
  text-align: center;
  padding: 20px;
}

textarea {
  width: 90%;
  max-width: 950px;
  height: 150px;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 16px;
}

/* אפקט ריחוף */
button:hover {
  background-color: #45a049;
}

/* כפתור מושבת */
button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* הודעות שגיאה */
.error {
  color: red;
  margin-bottom: 10px;
}

/* טבלה */
table {
  margin: 20px auto;
  border-collapse: collapse;
  width: 90%;
  max-width: 600px;
}

th, td {
  border: 1px solid #aaa;
  padding: 8px;
}

th {
  background-color: #ffe0b2;
}

/* ✅ עיצוב מיכל הכפתורים */
.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ✅ כפתורים אחידים */
.button-container button {
  width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ✅ עיצוב כללי לכפתור */
button {
  padding: 12px 24px;
  font-size: 18px;
  border-radius: 10px;
  border: none;
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
}
