#cookie-banner {
  display: none; /* alapból rejtett */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.4;
}

#cookie-banner .cookie-link {
  color: #00c3ff;
  text-decoration: underline;
}

#cookie-banner button#accept-cookie {
  margin-left: 15px;
  padding: 8px 15px;
  background-color: var(--primary-color);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

#cookie-banner button#accept-cookie:hover {
  background-color: #4f46e5;
}

@media (max-width: 480px) {
  #cookie-banner {
    flex-direction: column;
    font-size: 14px;
    padding: 12px 15px;
  }
  #cookie-banner button#accept-cookie {
    width: 100%;
    margin-left: 0;
  }
}
