
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
.btn-primary {
  background-color: #0d3b66 !important;
  border-color: #0d3b66 !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #092a4d !important; /* slightly darker shade for hover */
  border-color: #092a4d !important;
}

/* Ensure buttons don’t wrap and maintain equal height */
.mode-buttons .btn {
  white-space: nowrap;       /* prevent line break */
  text-overflow: ellipsis;   /* add "..." if text overflows */
  overflow: hidden;          /* hide overflow */
  min-width: 0;              /* allow shrinking */
  flex: 1 1 auto;            /* let both buttons shrink evenly */
  height: 38px;              /* fixed height (adjust as needed) */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Optional: adjust font on very small screens */
@media (max-width: 576px) {
  .mode-buttons .btn {
    font-size: 0.85rem;   /* smaller font but same height */
    padding: 0 0.3rem;    /* horizontal padding only */
  }
}

/* Marquee adjustments */
/* Container */
.marquee-container {
  overflow: hidden;
  height: 40px;
  position: relative;
  background: #fff; /* optional */
}

/* Inner scrolling wrapper */
.marquee {
  display: flex;
  width: max-content;
  animation: marquee 15s linear infinite;
  will-change: transform;
}

/* Text styling */
.marquee p {
  white-space: nowrap;
  font-weight: bold;
  color: #000;
  margin: 0;
  padding-right: 4rem; /* space between loops */
}

/* Animation keyframes */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* moves exactly half (so next copy follows smoothly) */
  }
}


