/* Aden Teknik Ultra Debug Panel (v1) */
.aden-ultra-btn{
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 99999;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(17,24,39,.92);
  color: #fff;
  font: 700 12px/1 system-ui,-apple-system,"Segoe UI",Roboto,Arial;
  letter-spacing: .08em;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(15,23,42,.25);
}
.aden-ultra-btn.open{ background: rgba(37,99,235,.92); }
.aden-ultra-panel{
  position: fixed;
  right: 14px;
  bottom: 76px;
  z-index: 99999;
  width: min(620px, calc(100vw - 28px));
  height: min(520px, calc(100vh - 110px));
  display: none;
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 22px 70px rgba(15,23,42,.35);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.aden-ultra-panel.open{ display: block; }
.aden-ultra-top{
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: grid;
  gap: 6px;
}
.aden-ultra-title{
  font: 800 14px/1.1 system-ui,-apple-system,"Segoe UI",Roboto,Arial;
  color: #0f172a;
}
.aden-ultra-rid{
  font: 600 12px/1.2 system-ui,-apple-system,"Segoe UI",Roboto,Arial;
  color: #334155;
}
.aden-ultra-rid code{
  font: 700 12px/1 ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
  background: rgba(15,23,42,.06);
  padding: 2px 6px;
  border-radius: 8px;
}
.aden-ultra-actions{
  display: flex;
  gap: 8px;
  align-items: center;
}
.aden-ultra-filter{
  flex: 1;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);
  padding: 0 10px;
  outline: none;
  font: 600 12px/1 system-ui,-apple-system,"Segoe UI",Roboto,Arial;
}
.aden-ultra-mini{
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(15,23,42,.06);
  font: 700 12px/1 system-ui,-apple-system,"Segoe UI",Roboto,Arial;
  cursor: pointer;
  padding: 0 10px;
}
.aden-ultra-tabs{
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.aden-ultra-tab{
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.75);
  font: 800 12px/1 system-ui,-apple-system,"Segoe UI",Roboto,Arial;
  padding: 0 12px;
  cursor: pointer;
}
.aden-ultra-tab.active{
  background: rgba(37,99,235,.10);
  border-color: rgba(37,99,235,.25);
}
.aden-ultra-body{
  height: calc(100% - 164px);
  padding: 10px;
}
.aden-ultra-body pre{
  height: 100%;
  margin: 0;
  overflow: auto;
  padding: 10px;
  border-radius: 12px;
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(0,0,0,.08);
  font: 12px/1.35 ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
  color: #0f172a;
  white-space: pre-wrap;
  word-break: break-word;
}
.aden-ultra-foot{
  padding: 8px 10px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.aden-ultra-link{
  font: 700 12px/1 system-ui,-apple-system,"Segoe UI",Roboto,Arial;
  color: #2563eb;
  text-decoration: none;
}
