.running-text {
    display: flex;
    align-items: center;
    background: #000;
    color: #fff;
    height: 40px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    border-top: 1px solid #00ff88;
    border-bottom: 1px solid #00ff88;
  }
  
  .running-text .icon {
    background: #0c0c0c;
    color: #fff;
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border-right: 2px dashed rgba(255, 255, 255, 0.733);
  }
  
  .running-text .marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .running-text .marquee span {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scrollText 18s linear infinite;
    font-size: 14px;
  }
  
  @keyframes scrollText {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }