.cookie-banner {
  position: fixed; bottom: 30px; right: 20px; max-width: 360px; width: 100%;
  background: #fff; border-radius: 10px; padding: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 9999; font-family: "Poppins", sans-serif; display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.cookie-banner header i {
  font-size: 28px; color: #40defa;
}
.cookie-banner header h2 {
  font-size: 18px; color: #40defa; margin: 0;
}
.cookie-banner p {
  font-size: 14px; color: #333;
}
.cookie-banner a {
  color: #4070f4; text-decoration: none;
}
.cookie-banner a:hover {
  text-decoration: underline;
}
.cookie-buttons {
  display: flex; justify-content: space-between; margin-top: 15px;
}
.cookie-buttons button {
  flex: 1; padding: 10px; margin: 0 5px;
  border: none; border-radius: 5px; font-weight: bold;
  cursor: pointer; transition: 0.2s;
}
#acceptCookies {
  background-color: #40defa; color: white;
}
#acceptCookies:hover {
  background-color: #40defa;
}
#declineCookies {
  border: 2px solid #40defa; background-color: white; color: #40defa;
}
#declineCookies:hover {
  background-color: #40defa8; color: #ffee9c;
}
.politikaKolacicaLink:hover {
color: #40defa;
}