@charset "utf-8";
/* CSS Document */

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 15px;
  z-index: 33000;
  display: none;
}

.cookie-content {
  max-width: 1100px;
  margin: auto;
}

.cookie-buttons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* MODAL */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 10000;
}

.cookie-modal-content {
  background: #fff;
  color: #333;
  max-width: 400px;
  margin: 10% auto;
  padding: 20px;
  border-radius: 6px;
}

.cookie-modal label {
  display: block;
  margin: 10px 0;
}

.cookie-modal-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}