/* ===========================
   TABS NAVIGATION STYLES
   File: styles/tabs.css
   =========================== */

.tabs-wrapper {
  background: #f0f4f8;
  border-top: 3px solid #003366;
  border-bottom: 3px solid #003366;
  padding: 0;
}

.tabs-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
}

.tab-link {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 200px;
  padding: 16px 20px;
  background: #ffffff;
  color: #003366;
  text-decoration: none;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  justify-content: center;
  border-right: 2px solid #c8d8e8;
  border-bottom: 4px solid transparent;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.tab-link:last-child {
  border-right: none;
}

.tab-link:hover {
  background: #003366;
  color: #ffffff;
  border-bottom: 4px solid #c8a000;
  text-decoration: none;
}

.tab-link.active {
  background: #003366;
  color: #ffffff;
  border-bottom: 4px solid #c8a000;
}

.tab-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* Responsive for smaller screens */
@media (max-width: 700px) {
  .tabs-nav {
    flex-direction: column;
  }

  .tab-link {
    border-right: none;
    border-bottom: 2px solid #c8d8e8;
    justify-content: flex-start;
  }

  .tab-link:last-child {
    border-bottom: none;
  }

  .tab-link:hover,
  .tab-link.active {
    border-bottom: 2px solid #c8a000;
  }
}