.panel { position: fixed; top: 52px; /* below global header */ right: 0; bottom: 0; width: 380px; background: rgba(15, 15, 20, 0.92); backdrop-filter: blur(12px); color: #fff; z-index: 20; transform: translateX(100%); transition: transform 0.25s ease; display: flex; flex-direction: column; overflow: hidden; border-left: 1px solid rgba(255, 255, 255, 0.1); } .panel.open { transform: translateX(0); } .header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); flex-shrink: 0; } .title { margin: 0; font-size: 18px; font-weight: 600; } .closeBtn { background: none; border: none; color: rgba(255, 255, 255, 0.6); font-size: 18px; cursor: pointer; padding: 4px 8px; border-radius: 4px; line-height: 1; } .closeBtn:hover { color: #fff; background: rgba(255, 255, 255, 0.1); } .body { flex: 1; overflow-y: auto; padding: 20px; }