#ticker {
      width: auto;
      overflow: hidden;
      white-space: nowrap;
      font-family: sans-serif; /* or  */
      height: 60px;
    }

#ticker-text {
      display: inline-block;
      padding-left: 100%;
      animation: scroll-left 20s linear infinite;
      font-family:  sans-serif;
      font-size: 40px;
      line-height: 60px;
      white-space: nowrap;
    }

@keyframes scroll-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }

/* Manual ticker styles */
.ticker-maintenance { color: #FFA500; font-weight: bold; background-color: #222222; }
.ticker-reschedule  { color: #00FFFF; font-weight: bold; background-color: #222222; }
.ticker-interrupt   { color: #FF0000; font-weight: bold; background-color: #222222; }
