

  
  
  .marquee-wrapper {
    position: relative;
    overflow: hidden;
    height: 40px;
    background-color: white;
    color: #fff;
    font-size: 18px;
    padding-right: 20px;
    text-align: right;
  }

  .marquee-caption {
    position: absolute;
    top: 0;
    right: auto;
    width: 150px;
    height: 100%;
    background-color: rgba(255, 0, 0, 0.8);
    color: Yellow;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
  }
  
  .notification-container {
    display: inline-block;
    white-space: nowrap;
    animation: marquee-scroll 20s linear infinite;
  }

  .notification {
    margin-right: 20px;
  }

  @keyframes marquee-scroll {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  .left-slider {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #009688;
    color: #fff;
    padding: 10px;
    z-index: 9999;
    cursor: pointer;
  }

  .marquee-container {
    background-color: #f5f5f5;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }

  .marquee-wrapper {
    display: flex;
    align-items: center;
    background-color: #043f6d;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
  }

  .marquee-caption {
    font-size: 14px;
    margin-right: 100%;
    background-color: rgba(0, 121, 107, 0.7);
    color: #fff;
    z-index: 1;
  }

  .material-icons {
    font-size: 24px;
    vertical-align: middle;
  }

  .notification-marquee {
    width: 90%;
    padding-left: 10px;
  }

  .notification-item {
    margin-right: 20px;
    white-space: nowrap;
  }

  .notification-index {
    margin-right: 5px;
    color: yellow;
  }

  .notification-link {
    text-decoration: none;
    color: yellow;
    transition: color 0.3s;
  }

  .notification-link:hover {
    color: blue;
  }

 