.text-customwebapp {
  text-align: center;
  color: #000;              /* was white */
  padding: 20px;
}

.text-customwebapp-paragraph {
  font-size: 1.2rem;
  padding: 1rem;
}

/* Svi frontend programski jezici animacija Custom web app - početak */
.app {
  min-width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.tag-list {
  width: 30rem;
  max-width: 90vw;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 1rem 0;
  position: relative;
  padding: 1.5rem 0;
  overflow: hidden;
}

.loop-slider {
  .inner {
    display: flex;
    width: fit-content;
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: var(--duration);
  }
}

.tag {
  background-color: white;
  display: flex;
  align-items: center;
  gap: 0 0.2rem;
  color: #000;                 /* High-tech: black text */
  font-size: 0.9rem;
  border: 1px solid #000;      /* clear outline */
  border-radius: 0.4rem;
  padding: 0.7rem 1rem;
  margin-right: 1rem;
  box-shadow:
    0 0.1rem 0.2rem rgb(0 0 0 / 20%),
    0 0.1rem 0.5rem rgb(0 0 0 / 30%),
    0 0.2rem 1.5rem rgb(0 0 0 / 40%);

  span {
    font-size: 1.2rem;
    color: #666;               /* neutral gray accent for icon */
  }
}

body.creative-layout .tag {
  background-color: #4B3621 !important; /* Creative unchanged */
  color: #DBE9B7;                        /* legible on dark chip */
  border: 1px solid transparent;
}

.fade {
  pointer-events: none;
  /* High-tech: white edges instead of dark */
  background: linear-gradient(90deg, #fff, transparent 65%, transparent 70%, #fff);
  position: absolute;
  inset: 0;
}

body.creative-layout .fade {
  background: linear-gradient(90deg, #DBE9B7, transparent 65%, transparent 70%, #DBE9B7);
}

@keyframes loop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Svi frontend programski jezici animacija Custom web app - kraj */
