.tabs {
  font-family: "Roboto Condensed", sans-serif;
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
  background-color: #2C3E50;
  margin-bottom: 0.2rem;
  font-weight: bold;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.tab {
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  padding: 2px 15px;
  position: relative;
  cursor: pointer;
  /* white-space: nowrap; */
}

.tab::after {
  content: "";
  display: block;
  height: 2px;
  /* background-color: white; */
  width: 0;
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tab:hover::after {
  width: 100%;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.aviatorIcon {
  height: 36px;
  filter: invert(18%) sepia(99%) saturate(7493%) hue-rotate(357deg) brightness(97%) contrast(119%);
  animation: blink 1s linear infinite;
 
}

.mobileOnly {
  display: block;
}

.desktopOnly {
  display: none;
}

@media (min-width: 769px) {

  .mobileOnly {
    display: none;
  }

  .desktopOnly {
    display: block;
  }
}

@media (max-width: 768px) {
  .tabs {
    padding: 0;
    margin-bottom: 0px;
    background: #0088cc;
  }

  /* .relativeOnHome {
    position: relative;
    top: 2.1rem;
  } */

  .tab {
    font-size: 12px;
    padding: 2px 6px;
    border-left: 1px solid white;
    border-left-width: 1px;
  }
}

.crashContent {
  display: flex;
  align-items: center;
  gap: 6px; /* space between icon and word on desktop */
}

/* base: no special order on desktop unless you want to force last */
.crashTab {
}

/* mobile rules already exist, we extend them */
@media (max-width: 768px) {
  /* ...your existing mobile styles... */

  /* 📱 Mobile: CRASH comes first */
  .crashTab {
    order: -1;
  }

  /* 📱 Mobile: hide the CRASH text, show only icon */
  
}

/* 🖥 Desktop: ensure CRASH is last */
@media (min-width: 769px) {
  .crashTab {
    order: 999; 
  }
}