#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; padding: 15px; border-top: 1px solid #ccc;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1); font-family: sans-serif;
  z-index: 9999; display: none;
}
#cookie-banner p { margin: 0 0 10px 0; font-size: 14px; }
#cookie-banner button { padding: 8px 15px; border: none; cursor: pointer; color: white; }
.btn-accept { background: #28a745; }
.btn-settings { background: #007bff; }
.btn-reject { background: #dc3545; }

#cookie-settings {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); display: none; justify-content: center; align-items: center;
  z-index: 10000;
}
.cookie-modal {
  background: white; padding: 20px; border-radius: 5px; width: 300px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.cookie-modal h2 {
  margin-top: 0;
}
.cookie-modal label {
  color: #333;
  font-size: 14px;
  cursor: pointer;
  display: block;
  margin-bottom: 8px;
}