.ticker-wrap {
    width: 100%;
    height: 20px; /* Visina ticker-a */
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;  /* Vertikalno centriranje */
    justify-content: center;  /* Horizontalno centriranje */
    background-color: transparent;
    padding: 0;
    margin: 0;
    
  }
  
  .ticker {
    white-space: nowrap;
    display: inline-block;
    animation: ticker-move 20s linear infinite;
  }
  
  
  .ticker span {
    font-size: 13px;
    font-weight: 600;
    color: #fba707;
    padding-left: 100%;
    display: inline-block;
    
  }
  @media (max-width: 768px) {
    li.social {
      display: flex;
      align-items: center;
      padding: 0;
      margin: 0;
      height: auto;
    }
  }
  

  .ticker span.available {
    color: #fba707; /* Zelena */
  }
  
  .ticker span.unavailable {
    color: #dc3545; /* Crvena */
  }
  
  
  @keyframes ticker-move {
    0% {
      transform: translateX(-20%);
    }
    100% {
      transform: translateX(-150%);
    }
  }

  html, body {
    overflow-x: hidden;
  }
  