.nav-pages-container {
  max-width: 1800px;
  margin: 0 auto;
  margin-top: 5px;
}

@media (max-width: 1024px) {
  .nav-pages-container {
    padding: 0 15px;
  }
}

@media (max-width: 450px) {
  .nav-pages-container {
    padding: 0 10px;
  }
}

.modern-nav-tabs {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  border-bottom: 1px solid #e9ecef;
  width: 100%;
}

.modern-nav-tabs .nav-item {
  margin: 0;
  flex: 1;
  display: flex;
}

.modern-nav-tabs .nav-link {
  padding: 14px 20px;
  color: #6c757d;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: -1px;
  width: 100%;
  text-align: center;
}

.modern-nav-tabs .nav-link i {
  font-size: 14px;
  opacity: 0.8;
}

.modern-nav-tabs .nav-link:hover {
  color: #79dd2f;
  background: transparent;
  border-bottom-color: #79dd2f;
}

.modern-nav-tabs .nav-link:hover i {
  opacity: 1;
}

.modern-nav-tabs .nav-link.active {
  color: #00675d;
  background: transparent;
  border-bottom-color: #00675d;
}

.modern-nav-tabs .nav-link.active:hover {
  color: #79dd2f;
  background: transparent;
  border-bottom-color: #79dd2f;
}

.modern-nav-tabs .nav-link.active i {
  opacity: 1;
}

.notification {
  background: linear-gradient(135deg, #00675d 0%, #00675d 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  margin-left: 6px;
  padding: 0 5px;
  box-shadow: 0 2px 4px rgba(143, 180, 53, 0.3);
}

.numeroid {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .nav-pages-container {
    display: none;
  }
}

@media (max-width: 768px) {
  .modern-nav-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #00675d #f1f1f1;
  }

  .modern-nav-tabs::-webkit-scrollbar {
    height: 4px;
  }

  .modern-nav-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .modern-nav-tabs::-webkit-scrollbar-thumb {
    background: #00675d;
    border-radius: 2px;
  }

  .modern-nav-tabs .nav-link {
    padding: 12px 16px;
    font-size: 13px;
    white-space: nowrap;
  }
}
