.tabbed-section {
  padding: 1.5rem;
  max-width: 800px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  margin-bottom: 0.75rem;
  background: #eeeeee;
  max-width: 1200px;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
}


.table-wrapper {
  overflow-x: auto;
  width: 100%;
}

.tab-link {
  background: none;
  border: none;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: #007e99;
  border-radius: 5px 5px 0 0;
}

.tab-link:hover, .tab-link.active {
  background: #00b0cc;
  color: white;
}

/* Tab Content */
.tab-content {
  display: none;
  padding: 1rem;
}

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

/* Order Table */
.order-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.order-table th, .order-table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: right;
}

.order-table th {
  background: #007e99;
  color: white;
}

.order-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #fed200;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.order-button:hover {
  background: #e50106;
  color: white;
}

@media(max-width: 768px) {
  .order-table th:nth-child(2),
  .order-table td:nth-child(2),
  .order-table th:nth-child(5),
  .order-table td:nth-child(5) {
    display: none;
  }

  .order-table {
    font-size: 0.75rem;
  }
}


@media(max-width: 452px) {
  .order-table th:nth-child(2),
  .order-table td:nth-child(2),
  .order-table th:nth-child(3),
  .order-table td:nth-child(3),
  .order-table th:nth-child(5),
  .order-table td:nth-child(5) {
    display: none;
  }

  .order-table {
    font-size: 0.75rem;
  }
}


@media(max-width: 410px) {
  .order-table th:nth-child(2),
  .order-table td:nth-child(2),
  .order-table th:nth-child(3),
  .order-table td:nth-child(3),
  .order-table th:nth-child(5),
  .order-table td:nth-child(5),
  .order-table th:nth-child(4),
  .order-table td:nth-child(4) {
    display: none;
  }

  .order-table {
    font-size: 0.75rem;
  }
}

  

/* Safety List */
.safety-list {
  list-style: none;
  padding: 0;
}

.safety-list li {
  margin-bottom: 0.5rem;
}

.safety-list a {
  text-decoration: none;
  color: #007e99;
}

.safety-list a:hover {
  text-decoration: underline;
}

/* Protocols Section */
.protocol-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #00b0cc;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.protocol-button:hover {
  background: #007e99;
}

/* Hidden Element */
.hidden {
  display: none;
}

.kit-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.kit-order-table th, .kit-order-table td {
  text-align: center;
  padding: 12px;
  border: 1px solid #ddd;
}

.kit-order-table th {
  background-color: #f4f4f4;
  font-weight: bold;
}

.buy-button {
  display: inline-block;
  padding: 8px 15px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.buy-button:hover {
  background-color: #0056b3;
}
