
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #333;
}

.spec-table thead th {
  background-color: #1f4ed8;
  color: #ffffff;
  text-align: left;
  padding: 12px;
  font-weight: 600;
}

.spec-table tbody td {
  padding: 12px;
  border: 1px solid #e0e0e0;
}

.spec-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.spec-table tbody tr:hover {
  background-color: #eef3ff;
  transition: background-color 0.3s ease;
}

.spec-table tbody td:first-child {
  font-weight: 600;
  width: 35%;
}

@media (max-width: 768px) {
  .spec-table thead {
    display: none;
  }

  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table tr {
    margin-bottom: 15px;
    border: 1px solid #ddd;
  }

  .spec-table tbody td {
    border: none;
    padding: 10px;
  }

  .spec-table tbody td:first-child {
    background-color: #f1f5ff;
    font-weight: 700;
  }
}
