table.ahs-table {
  width: 100% !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  margin: 18px 0 !important;
}

table.ahs-table th {
  font-weight: bold !important;
  background-color: #0E4055 !important;
  color: #ffffff !important;
  padding: 5px !important;
  border-top: 1px solid #d9e1e5 !important;
  border-bottom: 1px solid #d9e1e5 !important;
  border-left: none !important;
  border-right: none !important;
}

table.ahs-table td {
  padding: 5px !important;
  border-top: 1px solid #d9e1e5 !important;
  border-bottom: 1px solid #d9e1e5 !important;
  border-left: none !important;
  border-right: none !important;
  background-color: transparent !important;
  font-weight: normal !important;
}

table.ahs-table tbody tr:nth-child(odd) {
  background-color: #ffffff !important;
}

table.ahs-table tbody tr:nth-child(even) {
  background-color: #f5f7f9 !important;
}

table.ahs-table tbody tr td {
  background-color: inherit !important;
}

table.ahs-table tbody tr:first-child td {
  font-weight: normal !important;
}

.ahs-sidebar-card {
  background: #ffffff;
  border: 1px solid #d9e1e5;
  border-top: 5px solid #00BFB2;
  padding: 18px;
  margin-bottom: 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.ahs-sidebar-card h3 {
  color: #0E4055;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.ahs-sidebar-card p {
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 14px;
}

.ahs-sidebar-button {
  display: inline-block;
  background: #F26A3D;
  color: #ffffff !important;
  padding: 9px 14px;
  text-decoration: none !important;
  font-weight: bold;
  border-radius: 3px;
}

.ahs-sidebar-button:hover {
  background: #D9532F;
}

.ahs-sidebar-button.linkedin {
  background: #0077B5;
}

.ahs-logo-ribbon {
  margin: 30px 0;
  padding: 24px 0;
  background: #ffffff;
  border-top: 1px solid #d9e1e5;
  border-bottom: 1px solid #d9e1e5;
  overflow: hidden;
}

.ahs-logo-ribbon h2 {
  text-align: center;
  color: #0E4055;
  margin: 0 0 20px 0;
  font-size: 28px;
  font-weight: 700;
}

.ahs-logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ahs-logo-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: ahsLogoScroll 28s linear infinite;
}

.ahs-logo-track img {
  max-height: 70px;
  max-width: 190px;
  object-fit: contain;
  filter: none;
}

.ahs-logo-marquee:hover .ahs-logo-track {
  animation-play-state: paused;
}

@keyframes ahsLogoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}