#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #24416b;
  color: #fff;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  z-index: 99999;
}
#cookie-banner p { margin: 0; padding-right: 20px; }
#cookie-banner button {
  margin-left: 10px;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  cursor: pointer;
}
#cookie-banner .accept { background: #28a745; color: #fff; }
#cookie-banner .reject { background: #dc3545; color: #fff; }
#cookie-banner .prefs { background: #ffc107; color: #000; }

/* Modal */
#cookie-modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,.6);
  display: none; justify-content: center; align-items: center;
  z-index: 100000;
}
#cookie-modal .modal-content {
  background: #fff; color:#000;
  border-radius: 8px; padding: 20px;
  width: 90%; max-width: 500px;
}
#cookie-modal h3 { margin-top: 0; }
#cookie-modal label { display:block; margin:10px 0; }
#cookie-modal .modal-actions { text-align:right; margin-top: 15px; }
#cookie-modal button { margin-left:10px; }
