
/* Modal minimal y estético */
.acd-nc-hidden{ display:none !important; }

.acd-nc-modal{
  position: fixed;
  inset: 0;
  z-index: 999999;
}

.acd-nc-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(2px);
}

.acd-nc-card{
  position: relative;
  width: min(560px, calc(100% - 32px));
  margin: 8vh auto 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  border: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
}

.acd-nc-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding: 18px 18px 10px;
  background: linear-gradient(180deg, rgba(251,133,0,.12), rgba(33,158,188,.06));
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.acd-nc-kicker{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
  color: #fb8500;
  text-transform: uppercase;
}

.acd-nc-title{
  margin: 4px 0 0;
  font-size: 18px;
}

/* Botón de cierre (FIX) */
.acd-nc-x{
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.85);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  color: #111;
  cursor: pointer;
  flex: 0 0 auto;
  padding: 0;
}

.acd-nc-x:hover{
  background: rgba(255,255,255,1);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  transform: translateY(-1px);
}

.acd-nc-x:active{
  transform: translateY(0px) scale(0.98);
}

.acd-nc-x:focus{
  outline: none;
  box-shadow: 0 0 0 4px rgba(251,133,0,.18), 0 8px 20px rgba(0,0,0,.10);
}

.acd-nc-body{
  padding: 16px 18px;
}

.acd-nc-label{
  display:block;
  margin: 10px 0 6px;
  font-weight: 800;
  font-size: 12px;
  color: #111;
}

.acd-nc-req{ color:#fb8500; }

.acd-nc-input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  outline: none;
  font-size: 14px;
}

.acd-nc-input:focus{
  border-color: rgba(251,133,0,.75);
  box-shadow: 0 0 0 4px rgba(251,133,0,.18);
}

.acd-nc-error{
  display:none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(220,38,38,.08);
  border: 1px solid rgba(220,38,38,.25);
  color: #991b1b;
  font-weight: 700;
  font-size: 12px;
}

.acd-nc-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(0,0,0,.06);
}

.acd-nc-btn{
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  cursor:pointer;
  font-weight: 800;
}

.acd-nc-btn-primary{
  background: #fb8500;
  border-color: rgba(0,0,0,.08);
  color: #fff;
}

.acd-nc-btn-primary:disabled{
  opacity:.7;
  cursor: not-allowed;
}
