/* assets/css/admin-style.css */

/* ===== BOTÓN “Previsualizar” ===== */
.previsualizar-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  vertical-align: middle;
}
.previsualizar-btn svg {
  width: 20px;
  height: 20px;
  color: #444;
  transition: color .2s;
}
.previsualizar-btn:hover svg {
  color: #0b61a4;
}

/* ===== ESTILOS DEL MODAL DE PREVISUALIZACIÓN ===== */
.cr-preview-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.cr-preview-modal-contenido {
  background: #fff;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  position: relative;
  overflow-y: auto;
  padding: 24px;
}
.cr-preview-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
}
.cr-preview-modal-close:hover {
  color: #000;
}
.cr-preview-modal-body {
  margin-top: 32px;
}
.cr-preview-modal-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.cr-preview-modal-body th,
.cr-preview-modal-body td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
  font-size: 0.95rem;
}
.cr-preview-modal-body h4 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.cr-preview-spinner {
  text-align: center;
  font-style: italic;
  color: #666;
}

/* Puedes agregar aquí otros estilos de la página de admin (tabla, botones, etc.) */
