/* EDIX Unlock PDF — widget styles (scoped under .edix-unlock-pdf-widget) */
.edix-unlock-pdf-widget{
  --bg-app:#182338;
  --bg-panel:#111a2c;
  --panel-raise:#16233a;
  --border:#243452;
  --text:#ffffff;
  --text-muted:#e4e9f5;
  --orange:#f2994a;
  --blue:#4f8ef7;
  --blue-soft:#1c2c4a;
  --blue-dark:#3f78d6;
  --green:#3ecb82;
  --red:#f0654f;
}
.edix-unlock-pdf-widget,
.edix-unlock-pdf-widget *{
  box-sizing:border-box;
}
.edix-unlock-pdf-widget{
  display:block;
  font-family:'Helvetica Neue', Arial, sans-serif;
  background:var(--bg-app);
  color:var(--text);
  padding:32px 16px;
  border-radius:12px;
  line-height:normal;
}
.edix-unlock-pdf-widget .euw-card{
  width:100%;
  max-width:520px;
  margin:0 auto;
  background:var(--bg-panel);
  border:1px solid var(--border);
  border-radius:10px;
  padding:34px 38px 30px;
  box-shadow:0 25px 60px rgba(0,0,0,0.45);
}
.edix-unlock-pdf-widget .euw-brand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:4px;
}
.edix-unlock-pdf-widget .euw-brand-mark{
  width:34px;height:34px;
  border-radius:8px;
  background:var(--blue-soft);
  display:flex;align-items:center;justify-content:center;
  color:#8fb4f7;
  font-size:16px;
  flex:none;
}
.edix-unlock-pdf-widget .euw-brand h1{
  font-size:1.15rem;
  margin:0;
  color:var(--text);
  font-weight:700;
  line-height:1.2;
}
.edix-unlock-pdf-widget .euw-brand h1 .euw-hi{color:var(--orange);}
.edix-unlock-pdf-widget .euw-tag{
  font-size:0.7rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--text-muted);
  margin:0 0 22px 44px;
}
.edix-unlock-pdf-widget .euw-sub{
  font-size:0.88rem;
  color:var(--text-muted);
  line-height:1.55;
  margin:0 0 26px;
}
.edix-unlock-pdf-widget .euw-field{margin-bottom:16px;}
.edix-unlock-pdf-widget label{
  display:block;
  font-size:0.76rem;
  text-transform:uppercase;
  letter-spacing:0.06em;
  color:var(--text-muted);
  margin-bottom:6px;
}
.edix-unlock-pdf-widget input[type="file"],
.edix-unlock-pdf-widget input[type="password"]{
  width:100%;
  padding:11px 12px;
  border:1px solid var(--border);
  border-radius:7px;
  background:var(--panel-raise);
  color:var(--text);
  font-size:0.95rem;
  font-family:inherit;
}
.edix-unlock-pdf-widget input[type="file"]::file-selector-button{
  background:var(--blue-soft);
  color:#8fb4f7;
  border:1px solid var(--border);
  border-radius:5px;
  padding:6px 10px;
  margin-right:10px;
  cursor:pointer;
  font-family:inherit;
}
.edix-unlock-pdf-widget input::placeholder{color:#aab6cc;}
.edix-unlock-pdf-widget input:focus{
  outline:2px solid var(--blue);
  outline-offset:1px;
  background:#1a2740;
}
.edix-unlock-pdf-widget button{
  width:100%;
  padding:13px;
  border:none;
  border-radius:7px;
  background:var(--blue);
  color:#fff;
  font-size:0.95rem;
  font-weight:700;
  font-family:inherit;
  cursor:pointer;
  transition:background 0.15s ease, transform 0.1s ease;
  margin-top:4px;
}
.edix-unlock-pdf-widget button:hover:not(:disabled){background:var(--blue-dark);}
.edix-unlock-pdf-widget button:disabled{background:#2b3a58;color:#7c8aa8;cursor:not-allowed;}
.edix-unlock-pdf-widget button:active:not(:disabled){transform:scale(0.99);}
.edix-unlock-pdf-widget .euw-status{
  margin-top:18px;
  font-size:0.87rem;
  line-height:1.6;
  min-height:1.3em;
  display:flex;
  align-items:center;
  gap:8px;
}
.edix-unlock-pdf-widget .euw-status.euw-err{color:var(--red);}
.edix-unlock-pdf-widget .euw-status.euw-ok{color:var(--green);}
.edix-unlock-pdf-widget .euw-progress-wrap{
  margin-top:10px;
  height:6px;
  background:var(--panel-raise);
  border:1px solid var(--border);
  border-radius:4px;
  overflow:hidden;
  display:none;
}
.edix-unlock-pdf-widget .euw-progress-bar{
  height:100%;
  width:0%;
  background:var(--blue);
  transition:width 0.25s ease;
}
.edix-unlock-pdf-widget .euw-download{
  display:none;
  margin-top:16px;
  text-align:center;
  padding:14px;
  background:#122b1f;
  border:1px solid #1f4a34;
  border-radius:8px;
}
.edix-unlock-pdf-widget .euw-download a{
  color:var(--green);
  font-weight:700;
  text-decoration:none;
}
.edix-unlock-pdf-widget .euw-download a:hover{text-decoration:underline;}
.edix-unlock-pdf-widget .euw-note{
  margin-top:24px;
  padding-top:16px;
  border-top:1px solid var(--border);
  font-size:0.76rem;
  color:var(--text-muted);
  line-height:1.6;
}
.edix-unlock-pdf-widget .euw-note code{
  background:var(--panel-raise);
  color:#c3cee2;
  padding:1px 5px;
  border-radius:4px;
}

@media (max-width:480px){
  .edix-unlock-pdf-widget{padding:20px 10px;}
  .edix-unlock-pdf-widget .euw-card{padding:24px 18px 20px;border-radius:10px;}
  .edix-unlock-pdf-widget .euw-brand h1{font-size:1.05rem;}
  .edix-unlock-pdf-widget .euw-tag{margin-left:0;margin-top:2px;}
  .edix-unlock-pdf-widget .euw-sub{font-size:0.85rem;}
  .edix-unlock-pdf-widget button{padding:14px;font-size:1rem;}
  .edix-unlock-pdf-widget input[type="file"],
  .edix-unlock-pdf-widget input[type="password"]{font-size:16px;padding:12px;}
}
