.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f7f7f7;
  border-top: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  font-size: 14px;
}
.cookie-banner p {
  margin-bottom: 10px;
}

.cookie-btn {
  margin: 5px;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: #e0e0e0; /* color neutro */
  color: #000;
  transition: background 0.2s;
}

.cookie-btn:hover {
  background: #d0d0d0; /* leve cambio al pasar el ratón */
}

.cookie-settings {
  position: fixed;
  bottom: 60px;
  right: 20px;
  background: white;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  z-index: 10000;
  width: 300px;
}
.cookie-settings.hidden { display: none; }
.cookie-actions { margin-top: 15px; text-align: center; }
