/* tabs */
.modern-tabs-container {
  max-width: 100%;
  margin: 20px 0;
}

.modern-tabs-nav {
    display: flex;
    gap: 2px;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
    border-radius: 8px 8px 0 0;
    padding: 12px 12px 0 0px;
}

.modern-tab-button.active {
    padding: 14px 28px;
    background: white;
    border: 2px solid #e0e0e0;
    border-bottom: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #1e3060;
    transition: all 0.3s ease;
    position: relative;
    bottom: -3px;
    outline: none;
    border-top: 2px solid #1e3060;
}

.modern-tab-button:hover {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  color: #b61f42;
  transform: translateY(-2px);
}

.modern-tab-button {
    background: rgba(0,0,0,.04);
    color: rgba(74,74,74,.85);
    transform: translateY(-2px);
    outline: none;
    border: 2px solid #e0e0e0;
    font-size: 15px;
    font-weight: 600;
    border-bottom: none;
    position: relative;
    bottom: -3px;
    padding: 14px 28px;
}

.modern-tabs-content {
  background: white;
  border: 2px solid #e0e0e0;
  border-top: none;
  padding: 30px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 15px rgba(30, 48, 96, 0.1);
}

.modern-tab-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}

.modern-tab-pane.active {
  display: block;
}

.modern-tab-item {
  display: none;
}

.modern-tab-item.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-tabs-nav {
    flex-direction: column;
    gap: 4px;
  }

  .modern-tab-button {
    border-radius: 6px;
    border: 2px solid #e0e0e0;
    bottom: 0;
    width: 100%;
  }

  .modern-tab-button.active {
    border: 2px solid #b61f42;
  }

  .modern-tabs-content {
    border-top: 2px solid #1e3060;
    border-radius: 0 0 8px 8px;
    padding: 20px;
  }
}
.lab-tests-heading-box {
    background: #f9f9f9;              /* soft grey background */
    border: 1px solid #e0e0e0;        /* subtle border */
    padding: 25px 30px;
    border-radius: 12px;              /* smoother edges */
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* soft shadow */
    margin: 20px 0;
    transition: all 0.3s ease;
}

.lab-tests-heading-box:hover {
    background: #ffffff;               /* white on hover */
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.lab-test-results {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin: 20px 0;
}

.lab-test-results .results-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}


.results-row:last-child {
    border-bottom: none;
}

.results-key {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #555;
}

.results-key .results-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.results-value {
    color: #2c3e50;
    font-weight: 500;
display: flex;
    flex-direction: column-reverse;
}
.lab-test-results {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.lab-test-results .results-title {
    background: #2c3e50;      /* heading background */
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 14px 20px;
}

.results-table {
    display: flex;
    flex-direction: column;
}

.results-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
}

/* Alternate row background colors */
.results-row:nth-child(odd) {
    background: #ffffff;   /* white */
}

.results-row:nth-child(even) {
    background: #f9f9f9;   /* light grey */
}

.results-key {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #444;
}

.results-key .results-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.results-value {
    font-weight: 500;
    color: #222;
}
span.verified_by {
    text-transform: uppercase;
    font-weight: bold;
    color: #000
}
.verification-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.verification-section img {
    width: 150px;
}
span.verified-heading {
    font-size: 24px;
    font-weight: bold;
}
.test-head {
    text-align: center;
}