.ledtabs-container {
  margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background: #fff;
}

.ledtabs-buttons {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
  background: #f9f9f9;
}

.ledtabs-buttons button {
  flex: 1;
  padding: 12px 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  font-size: 15px;
}

.ledtabs-buttons button:hover,
.ledtabs-buttons button.ledtabs-active {
  background: #ececec;
}

.ledtabs-content {
  padding: 18px;
  display: none;
  background: #fffdfa;
  font-size: 14px;
  line-height: 1.6;
}

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

.ledtabs-content ul {
  margin: 0 0 10px 20px;
}

.ledtabs-content strong {
  color: #253867;
}

@media (max-width: 768px) {
  .ledtabs-buttons button {
    font-size: 14px;
    padding: 10px 6px;
  }
}