/* Status Navbar Styles */
.status-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  background-color: #11152E;
  padding: 18px 40px;
}

.status-navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #11152E;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content
}

.omniful-logo {
  height: 20px;
  display: flex;
  justify-items: start;
  width: fit-content
}

.separator {
  width: 1px;
  height: 22px;
  background-color: white;
}

.status-text {
  color: white;
  font-size: 18px;
  font-weight: 500;
}

.contact-us-button {
  display: flex;
  height: 46px;
  border-radius: 37px;
  background: linear-gradient(var(--gradient-angle, 45deg), rgba(216,216,216,1), rgba(60,60,60,1));
  animation: rotation 3s linear infinite;
  text-decoration: none;
}

.contact-us-inner {
  margin: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 37px;
  background-color: white;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: black;
  transition: colors 0.3s;
}


@media (max-width: 1025px) {
  .status-navbar {
      padding: 18px 20px;
  }
  
  .status-text {
      font-size: 14px;
  }
  
  .contact-us-button {
      height: 46px;
  }
  
  .contact-us-inner {
      padding: 8px 24px;
      font-size: 12px;
  }
  .omniful-logo {
    height: 18px;
  }
}