body{
  margin:0;
  font-family: system-ui;
  background:#f5f5f5;
  max-width:520px;
  margin:auto;
}

header{
  padding:15px;
  background:#4a6cf7;
  color:white;
  text-align:center;
  font-weight:bold;
}

.header-sub{
  opacity:.95;
  margin-top:8px;
  font-weight:normal;
}

.headerlink{
  color:#fff;
  text-decoration:underline;
}

.pushRow{
  margin-top:10px;
  display:flex;
  gap:8px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}

nav{
  display:flex;
  justify-content:space-around;
  background:white;
  padding:10px 0;
  border-bottom:1px solid #ddd;
}

nav button{
  background:none;
  border:1px solid transparent;
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
}

nav button.active{
  background:#eef1ff;
  border-color:#4a6cf7;
  font-weight:700;
}

.card{
  background:white;
  margin:10px;
  padding:12px;
  border-radius:10px;
  box-shadow:0 1px 4px rgba(0,0,0,0.08);
  font-size:14px;
}

.small{
  font-size:12px;
  color:#666;
}

.small.label{
  margin:6px 0 6px 2px;
}

input, textarea, select{
  width:100%;
  padding:10px;
  margin-bottom:10px;
  font-size:14px;
  border:1px solid #ddd;
  border-radius:10px;
  box-sizing:border-box;
}

textarea{
  min-height:90px;
  resize:vertical;
}

.row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:10px;
  align-items:center;
}

.btn{
  border:1px solid #ddd;
  background:white;
  padding:10px 12px;
  border-radius:10px;
  font-size:14px;
  color:#111;
  cursor:pointer;
}

.btn.primary{
  background:#4a6cf7;
  color:white;
  border-color:#4a6cf7;
}

.btn.danger{
  border-color:#ffb3b3;
}

.smallbtn{
  padding:8px 10px;
  font-size:13px;
}

/* FAB wie V1 */
.fab{
  position:fixed;
  bottom:20px;
  right:20px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#4a6cf7;
  color:white;
  border:none;
  font-size:28px;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  cursor:pointer;
  z-index:9999;
}