/* v5.14 Header admin button patch */
.header-actions{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  white-space:nowrap;
}
.header-admin-cta{
  min-height:52px;
  padding:0 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:17px;
  color:#075cff;
  background:#fff;
  border:1px solid #cfe0ff;
  font-size:17px;
  font-weight:950;
  letter-spacing:-.02em;
  box-shadow:0 8px 20px rgba(7,92,255,.08);
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.header-admin-cta:hover{
  transform:translateY(-1px);
  border-color:#9fc1ff;
  box-shadow:0 12px 26px rgba(7,92,255,.14);
}
@media(max-width:1050px){
  .header-actions{gap:8px;}
  .header-admin-cta{min-height:46px;padding:0 16px;border-radius:14px;font-size:15px;}
}
@media(max-width:640px){
  .header-actions{gap:6px;}
  .header-admin-cta{min-height:42px;padding:0 11px;border-radius:13px;font-size:13px;}
  .header-actions .header-cta{min-height:42px;font-size:13px;padding:0 11px;}
}
@media(max-width:420px){
  .header-admin-cta{font-size:12px;padding:0 9px;}
  .header-actions .header-cta{font-size:12px;padding:0 9px;}
}
