.table-container {
  width: 100%;
  margin: 0;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 0;
  box-shadow: var(--box-shadow);
  border: none;
  overflow-x: auto;
}

.keyboards-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text-color);
}

.keyboards-table th {
  background: var(--primary-color);
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: none;
}

.keyboards-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  white-space: nowrap;
}

.keyboards-table td:first-child,
.keyboards-table th:first-child {
  text-align: left;
}

.keyboards-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.keyboards-table tr:last-child td {
  border-bottom: none;
}

.price-tag {
  color: var(--secondary-color);
  font-weight: 600;
}

.rating {
  color: #ffd700;
}

.keyboard-image {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.table-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--primary-color);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .table-container {
    padding: 0;
    overflow-x: auto;
  }

  .keyboards-table th,
  .keyboards-table td {
    padding: 8px 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    text-align: center;
  }

  .keyboards-table td:first-child,
  .keyboards-table th:first-child {
    text-align: left;
  }

  .keyboard-image {
    width: 50px;
    height: 40px;
  }

  .table-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}
