/* 🚀 MASTER ELITE: DISEÑO INDEPENDIENTE (v1.29) */
.master-overlay {
  position: fixed !important;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999999 !important; /* Prioridad de Agencia Suprema */
  display: none;   
  align-items: center; justify-content: center;
  padding: 1rem;
  font-family: 'Inter', sans-serif;
}
.master-overlay.show { display: flex !important; }

.master-card {
  background: #0d0d0f;
  border: 1px solid rgba(255, 51, 51, 0.2);
  border-radius: 20px;
  width: 650px;
  max-width: 95%;
  max-height: 90vh; /* 🚀 Altura máxima 90% pantalla */
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 60px rgba(255, 0, 0, 0.15);
  overflow: hidden;
  animation: eliteIn 0.4s ease-out;
}
@keyframes eliteIn { from { opacity: 0; transform: translateY(30px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }

.master-header { padding: 1.5rem 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05); display: flex; justify-content: space-between; align-items: center; }
.master-body { 
  padding: 2rem; 
  overflow-y: auto; /* 🚀 Habilitar Scroll */
  flex: 1;
}
.master-field { margin-bottom: 1.2rem; }
.master-label { display: block; font-size: 0.75rem; color: #888; margin-bottom: 0.5rem; text-transform: uppercase; font-weight: 800; letter-spacing: 1px; }
.master-input { width: 100%; height: 44px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; padding: 0 1rem; }
.master-btn-save { background: #ff3333; color: #fff; border: none; padding: 0 2rem; height: 48px; border-radius: 10px; font-weight: 900; cursor: pointer; box-shadow: 0 10px 20px rgba(255,0,0,0.3); transition: all 0.2s; }
.master-btn-save:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(255,0,0,0.4); }
