.table-motor {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  text-align: left;
}

.table-motor th,
.table-motor td {
  border: 1px solid #009fe3;
  padding: 6px 10px;
  vertical-align: middle;
}

/* צבע רק לכותרות Unit, Offered, Remark */
.table-motor thead th:nth-child(2),
.table-motor thead th:nth-child(3),
.table-motor thead th:nth-child(4) {
  background-color: #7dd2ff; /* ← זה הצבע מהתמונה שלך */
  font-weight: bold;
  color: #000;
}

/* הכותרת הראשונה נשארת בצבע הקודם */
.table-motor thead th:first-child {
   background-color: #ffffff;
  font-weight: bold;
  color: #000;
}

/* עיצוב שורות */
.table-motor tr:nth-child(even) {
  background-color: #f9f9f9;
}

.table-motor caption {
  caption-side: top;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
}

/* עריכה חלקה לעמודות Offered / Remark / Unit */
.table-motor td.offered[contenteditable="true"],
.table-motor td.remark[contenteditable="true"],
.table-motor td[contenteditable="true"]:not(.item) {
  background-color: transparent;
  cursor: text;
}
.table-motor td.offered:focus,
.table-motor td.remark:focus,
.table-motor td[contenteditable="true"]:focus {
  background-color: #fffce8;
  box-shadow: inset 0 0 0 1px #ffc107;
  border-radius: 3px;
}

/* רספונסיביות */
@media (max-width: 768px) {
  .table-motor {
    font-size: 13px;
  }
  .table-motor th,
  .table-motor td {
    padding: 5px;
  }
}



.amppera-footer {
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  color: #000;
  width: 100%;
}

.amppera-footer .footer-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* ארבעה טורים שווים */
  justify-items: center;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.amppera-footer .footer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.amppera-footer .footer-link {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.amppera-footer .footer-link:hover {
  text-decoration: underline;
}

.amppera-footer .text-pink {
  color: #ff2e6b; /* ורוד מדויק של הלוגו */
}

.amppera-footer .footer-address {
  font-size: 12px;
  margin-top: 6px;
}

/* רספונסיבי למובייל */
@media (max-width: 768px) {
  .amppera-footer .footer-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 6px;
  }
}


