.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1d2422;
  color: #e8f0ee;
  z-index: 2000;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
}

.cookie-banner__text {
  flex: 1;
  min-width: 220px;
  font-size: 14px;
  line-height: 1.5;
  color: #cdd8d5;
}

.cookie-banner__text a {
  color: #7ecfbe;
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  color: #fff;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-banner__accept {
  padding: 9px 20px;
  background: #007765;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
  white-space: nowrap;
}

.cookie-banner__accept:hover {
  background: #005e52;
}

/* Placeholder for future "Postavke kolačića" button */
.cookie-banner__settings {
  padding: 9px 16px;
  background: transparent;
  color: #cdd8d5;
  border: 1px solid #4a5c58;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
  display: none; /* shown when optional cookies are added */
}

.cookie-banner__settings:hover {
  border-color: #7ecfbe;
  color: #fff;
}

@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
