#cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  background: rgba(
    36,
    38,
    49,
    0.95
  ); /* Tvoja tamna boja sa blagom providnošću */
  backdrop-filter: blur(10px); /* Stakleni efekat */
  padding: 25px 40px;
  z-index: 1000000;
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

#cookie-banner.active {
  display: block;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

.cookie-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.cookie-text strong {
  color: #17bdce !important; /* Tvoja brend boja */
  font-weight: 400;
  display: block;
  font-size: 1.1em;
  margin-bottom: 5px;
}

.cookie-text a {
  color: #17bdce !important;
  border-bottom-style: solid !important;
  font-weight: 300;
}

/* Dugmići */
#cookie-banner .actions {
  margin: 0 !important;
  white-space: nowrap;
  display: flex;
  gap: 15px;
}

#cookie-banner .button {
  height: 3em !important;
  line-height: 3em !important;
  padding: 0 2em !important;
  font-size: 0.8em !important;
  letter-spacing: 0.1em;
  border-radius: 8px !important;
}

/* Responzivnost za tablete i mobilne */
@media screen and (max-width: 980px) {
  #cookie-banner {
    padding: 20px 25px;
    bottom: 20px;
  }
  .cookie-content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .cookie-text p {
    font-size: 13px !important;
  }
}

@media screen and (max-width: 480px) {
  #cookie-banner .actions {
    flex-direction: column;
    width: 100%;
  }
  #cookie-banner .actions li {
    width: 100%;
    padding: 0 !important;
  }
  #cookie-banner .button {
    width: 100% !important;
  }
}
