html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
.marquee-container {
    /* Set a fixed height and background for visibility */
    height: 50px;
    background-color: #f8f9fa; /* Bootstrap's bg-light color */
    border: 1px solid #dee2e6; /* Bootstrap's border color */
}

.marquee-content {
    /* Ensure content stays on a single line and starts outside the container */
    white-space: nowrap;
    animation: marquee-animation 15s linear infinite; /* Adjust duration to control speed */
}

    .marquee-content:hover {
        /* Pause animation on hover */
        animation-play-state: paused;
    }

@keyframes marquee-animation {
    0% {
        transform: translateX(100%); /* Start from the right (outside the container) */
    }

    100% {
        transform: translateX(-100%); /* Move to the left (outside the container) */
    }
}