.marquee-wrapper {
    display: flex;
    align-items: center;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    height: 40px;
    overflow: hidden;
    font-family: Arial, sans-serif;
  }

  .label {
    background-color: #d9534f; /* Bootstrap red-like color */
    color: white;
    padding: 0 15px;
    font-weight: bold;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
  }

  .marquee {
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
    position: relative;
  }

  .marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 30s linear infinite;
    font-weight: bold;
  }

  @keyframes scroll-left {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-100%);
    }
  }