.access-drawer{
  position:fixed;
  inset:0;
  z-index:9999;
  pointer-events:none;
  opacity:0;
  transition:.2s ease;
}

.access-drawer.open{
  pointer-events:auto;
  opacity:1;
}

.access-drawer-backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.38);
  backdrop-filter:blur(6px);
}

.access-drawer-panel{
  position:absolute;
  top:0;
  right:0;
  width:min(760px,100%);
  height:100%;
  overflow:auto;
  background:#f8fafc;
  box-shadow:-30px 0 80px rgba(15,23,42,.25);
  padding:26px;
}

.access-drawer-head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  padding:22px;
  border-radius:28px;
  background:linear-gradient(135deg,#0f172a,#111827);
  color:white;
  margin-bottom:18px;
}

.access-drawer-head h2{
  margin:0;
  color:white;
  font-size:34px;
}

.access-drawer-head p{
  margin:6px 0 0;
  color:rgba(255,255,255,.7);
}

.access-drawer-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:16px;
}

.access-drawer-card{
  padding:20px;
  border-radius:24px;
  background:white;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 14px 38px rgba(15,23,42,.07);
}

.access-drawer-card h3{
  margin:0 0 16px;
  font-size:22px;
}

.access-drawer-card select,
.access-drawer-card input{
  width:100%;
  min-height:44px;
  margin-bottom:12px;
}




.modal-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}