/* Cookie Banner CSS */
#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100vw;
  background-color: #f8f9fa; /* Törtfehér háttérszín */
  padding: 20px;
  z-index: 1000;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

#cookie-banner p {
  color: #333;
  font-size: 16px;
  margin: 0 0 10px;
}

#cookie-banner button {
  margin: 0 10px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}

#accept-all-cookies {
  background-color: #28a745;
  color: white;
}

#reject-non-essential-cookies {
  background-color: #dc3545;
  color: white;
}

#cookie-banner a {
  color: #007bff;
  text-decoration: underline;
}

/* Cookie Settings Modal */
#cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

#cookie-settings-modal div {
  background-color: white;
  width: 80%;
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  border-radius: 5px;
}

#cookie-settings-modal h2 {
  margin-top: 0;
  color: #333;
}

#cookie-settings-modal label {
  font-size: 16px;
  color: #333;
}

#cookie-settings-form {
  margin-top: 20px;
}

#cookie-settings-form label {
  display: block;
  margin-bottom: 10px;
}

#cookie-settings-form input[type="checkbox"] {
  margin-right: 10px;
}

#save-cookie-settings,
#close-cookie-settings {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
}

#save-cookie-settings {
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}

#close-cookie-settings {
  background-color: #6c757d;
  color: white;
  border: none;
  cursor: pointer;
}
