/* Estilos básicos para el banner y modal de cookies */
#vmvcm-cookie-banner, #vmvcm-cookie-modal {
  font-family: inherit;
  z-index: 99999;
}
#vmvcm-cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #222;
  color: #fff;
  padding: 1.5em 1em 1em 1em;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}
#vmvcm-cookie-banner .vmvcm-btns {
  margin-top: 1em;
  display: flex;
  gap: 0.5em;
}
.vmvcm-btn {
  background: #fff;
  color: #222;
  border: none;
  padding: 0.5em 1.2em;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}
.vmvcm-btn:hover {
  background: #f1c40f;
  color: #222;
}
#vmvcm-cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
}
#vmvcm-cookie-modal .vmvcm-modal-content {
  background: #fff;
  color: #222;
  padding: 2em;
  border-radius: 8px;
  min-width: 320px;
  max-width: 90vw;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
#vmvcm-cookie-modal .vmvcm-modal-actions {
  margin-top: 1.5em;
  display: flex;
  gap: 0.5em;
  justify-content: flex-end;
}
.vmvcm-switch {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}
.vmvcm-switch input[type="checkbox"] {
  margin-right: 0.5em;
}
