#gdpr-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 99999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#gdpr-cookie-banner .banner-content {
  max-width: 1200px;
  margin: 0 auto;
}

#gdpr-cookie-banner h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
}

#gdpr-cookie-banner p {
  margin: 0 0 15px 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

#gdpr-cookie-banner .buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#gdpr-cookie-banner button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.1s ease;
}

#gdpr-cookie-banner .accept-all {
  background: #0073aa;
  color: #fff;
}

#gdpr-cookie-banner .accept-all:hover {
  background: #005f8a;
}

#gdpr-cookie-banner .reject-all {
  background: #f0f0f0;
  color: #333;
}

#gdpr-cookie-banner .reject-all:hover {
  background: #e0e0e0;
}

#gdpr-cookie-banner .customize {
  background: transparent;
  color: #0073aa;
  text-decoration: underline;
}

#gdpr-cookie-settings {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

#gdpr-cookie-settings label {
  display: block;
  margin: 10px 0;
  font-size: 14px;
}

#gdpr-cookie-settings input[type="checkbox"] {
  margin-right: 8px;
}

#gdpr-cookie-settings small {
  display: block;
  color: #666;
  margin-left: 24px;
  margin-top: 4px;
}

/* 📱 Mobilna verzija */
@media (max-width: 768px) {
  #gdpr-cookie-banner {
    text-align: center;
    padding: 16px;
  }

  #gdpr-cookie-banner .buttons {
    flex-direction: column;
    align-items: stretch;
  }

  #gdpr-cookie-banner button {
    width: 100%;
    padding: 12px 0;
  }

  #gdpr-cookie-banner h3 {
    font-size: 16px;
  }

  #gdpr-cookie-banner p {
    font-size: 13px;
  }
}