/* =========================================================
   VERA-VM · Modul A5 – Nüchternes Frontend
   ========================================================= */

.vera-a5-wrapper{
  max-width:960px;
  margin:40px auto;
  padding:24px 28px;
  background:#ffffff;
  color:#111111;
  border-radius:14px;
  border:1px solid #d9d9d9;
  box-shadow:0 10px 26px rgba(0,0,0,.08);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

/* Header */
.vera-a5-header{
  border-bottom:1px solid #e5e5e5;
  padding-bottom:14px;
  margin-bottom:20px;
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:12px;
}

.vera-a5-title{
  font-size:1.35rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#318094;
  font-weight:700;
}

.vera-a5-subline{
  font-size:.95rem;
  color:#333;
  margin-top:6px;
}

.vera-a5-badge{
  font-size:.75rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:#318094;
  border:1px solid #31809455;
  padding:4px 10px;
  border-radius:999px;
}

/* Actions */
.vera-a5-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}

.vera-a5-button{
  border-radius:999px;
  padding:9px 16px;
  border:1px solid #cfcfcf;
  background:#fff;
  color:#111;
  font-size:.95rem;
  cursor:pointer;
  font-weight:600;
}

.vera-a5-button-primary{
  border-color:#318094;
  color:#318094;
}

.vera-a5-button-primary:hover{
  background:#318094;
  color:#fff;
}

.vera-a5-button-secondary:hover{
  border-color:#318094;
  color:#318094;
  background:#f6fbfd;
}

/* Status */
.vera-a5-status{
  font-size:.92rem;
  padding:10px 12px;
  border-radius:10px;
  background:#f7f7f7;
  border:1px solid #e1e1e1;
  margin-bottom:14px;
  min-height:24px;
}

.vera-a5-status-success{
  border-left:4px solid #318094;
  color:#111;
}

.vera-a5-status-error{
  border-left:4px solid #b00020;
  color:#111;
}

/* Preview */
.vera-a5-preview{
  margin-top:20px;
  padding:16px 18px;
  border-radius:12px;
  background:#ffffff;
  border:1px solid #e1e1e1;
}

/* =========================================================
   A5 – PREVIEW HIGHLIGHT (UI-FEEDBACK)
   ========================================================= */

.vera-a5-preview-highlight {
    outline: 3px solid #2c7be5;
    outline-offset: 6px;
    background: rgba(44, 123, 229, 0.06);
    transition: outline 0.3s ease, background 0.3s ease;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width:700px){

  .vera-a5-wrapper{
    margin:24px auto;
    padding:18px 16px;
  }

  .vera-a5-header{
    flex-direction:column;
    align-items:flex-start;
  }

}
