:root{
  --bg:#070A12;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.08);
  --border:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.62);
  --good:#49d17d;
  --bad:#ff5b6e;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Arial;
  background:
    radial-gradient(1200px 700px at 20% 20%, rgba(122,64,255,.22), transparent 60%),
    radial-gradient(900px 600px at 80% 30%, rgba(0,220,255,.16), transparent 55%),
    radial-gradient(900px 700px at 50% 90%, rgba(255,90,140,.10), transparent 60%),
    var(--bg);
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.9}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:28px 18px 60px;
}

.topbar{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.05));
  box-shadow:var(--shadow);
  border-radius:22px;
  backdrop-filter: blur(10px);
}

.brand{display:flex; align-items:center; gap:12px;}
.brand img{
  width:44px;height:44px;border-radius:14px;object-fit:cover;
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
}
.brand .title{
  font-weight:900;
  font-size:24px;
  letter-spacing:.5px;
}
.brand .sub{
  color:var(--muted);
  font-size:12px;
  margin-top:4px;
}

.nav{margin-left:auto; display:flex; gap:10px; align-items:center; flex-wrap:wrap;}
.pill{
  padding:8px 12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  border-radius:999px;
  color:var(--text);
}
.pill:hover{background:rgba(255,255,255,.08)}

.grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  margin-top:18px;
}
@media (max-width: 900px){
  .grid{grid-template-columns:1fr}
}

.card{
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
  backdrop-filter: blur(10px);
}

.h1{font-size:26px; margin:0 0 12px; letter-spacing:.2px}
.h2{font-size:16px; margin:0 0 10px; color:var(--text)}
.muted{color:var(--muted)}
.row{display:flex; gap:10px; flex-wrap:wrap; align-items:center}

input, select, button{
  color:var(--text);
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px 12px;
  outline:none;
}
select[multiple]{min-width:240px}
input::placeholder{color:rgba(255,255,255,.45)}
input:focus, select:focus{
  border-color:rgba(122,64,255,.5);
  box-shadow: 0 0 0 6px rgba(122,64,255,.12);
}

.btn{
  cursor:pointer;
  border-radius:14px;
  padding:12px 14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.08);
  font-size:15px;          /* <-- WICHTIG */
  font-weight:600;
  line-height:1.2;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

}
.btn.primary{
  background:linear-gradient(135deg, rgba(122,64,255,.9), rgba(0,220,255,.65));
  border-color: rgba(255,255,255,.14);
}
.btn.danger{
  background:linear-gradient(135deg, rgba(255,91,110,.85), rgba(255,140,92,.55));
  border-color: rgba(255,255,255,.14);
}
.btn:hover{filter:brightness(1.06)}

.notice{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
}
.notice.ok{border-color:rgba(73,209,125,.35)}
.notice.bad{border-color:rgba(255,91,110,.35)}
.notice.ok strong{color:var(--good)}
.notice.bad strong{color:var(--bad)}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 10px;
}
.table th{color:var(--muted); text-align:left; font-weight:600; font-size:12px; padding:0 10px;}
.table td{
  background:rgba(255,255,255,.05);
  border:1px solid var(--border);
  padding:12px 10px;
}
.table tr td:first-child{border-top-left-radius:14px;border-bottom-left-radius:14px}
.table tr td:last-child{border-top-right-radius:14px;border-bottom-right-radius:14px}
code{color:rgba(255,255,255,.86)}
