
.instrument-tabs {
  font-family: Arial, sans-serif;
  color: #000;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab {
  background-color: black;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.tab.active {
  background-color: #e30613;
  color: #fff;
}

.tab:hover {
  background-color: #e30613;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.instrument-table {
  width: 100%;
  border-collapse: collapse;
}

.instrument-table th, .instrument-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

.instrument-table th {
  background-color: black;
  color: white;
}
