/* Dark overlay */
#cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
}

/* Popup */
#cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  color: #333;
  padding: 20px;
  border-radius: 12px;
  max-width: 360px;
  font-family: Arial, sans-serif;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 9999;
  border: 2px solid #00bcd4;
}

#cookie-popup p {
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Buttons */
.cookie-buttons {
  text-align: right;
}

.cookie-buttons button,
#cookie-save {
  padding: 7px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-left: 10px;
}

#cookie-accept-all,
#cookie-save {
  background: #00bcd4;
  color: #fff;
}

#cookie-settings {
  background: #e0e0e0;
  color: #333;
}

/* Settings panel */
#cookie-settings-panel {
  display: none;
  margin-top: 15px;
}

#cookie-settings-panel label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}
