
.spec-table-container {
  max-width: 1000px;
  margin: 30px auto;
  font-family: Arial, sans-serif;
}
.spec-table-title {
  font-size: 24px;
  color: #1a5f7a;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.spec-table th {
  background: #1a5f7a;
  color: #fff;
  padding: 14px;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
}
.spec-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #eee;
  text-align: center;
  font-size: 14px;
  color: #333;
}
.spec-table tr:hover {
  background: #f8f9fa;
  transition: 0.2s ease;
}
