.des-fe{
  --bg: linear-gradient(180deg,#eef6ff 0%, #ffffff 55%, #eaf7ff 100%);
  --text:#0b1b33;
  --muted:rgba(11,27,51,.65);
  --border:rgba(11,27,51,.12);
  --blue:#2f7dff;
  --cyan:#5bd6ff;
  --shadow:0 14px 35px rgba(16,40,90,.10);
  --r:18px;

  background:var(--bg);
  color:var(--text);
  border:1px solid var(--border);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  padding:14px;
  margin:14px 0;
}

.des-fe-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  padding-bottom:10px;
  border-bottom:1px solid var(--border);
  margin-bottom:12px;
}

.des-fe-head h3{margin:0;font-size:16px;font-weight:900}

.des-fe-actions{display:flex;gap:8px;flex-wrap:wrap;align-items:center}

.des-fe-btn{
  border:none;
  cursor:pointer;
  font-weight:800;
  border-radius:12px;
  padding:10px 12px;
  color:#fff;
  background:linear-gradient(90deg, var(--blue), var(--cyan));
}
.des-fe-btn-ghost{
  background:rgba(255,255,255,.85);
  color:var(--text);
  border:1px solid var(--border);
}
.des-fe-btn-danger{
  background:linear-gradient(90deg, #ff3b3b, #ff7a59);
}

.des-fe-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(max-width:900px){.des-fe-grid{grid-template-columns:1fr}}

.des-fe-card{
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
  background:linear-gradient(180deg,#ffffff 0%, #f2f8ff 100%);
}

.des-fe-label{font-weight:900;font-size:12px;margin-bottom:8px}

.des-fe-ta{
  width:100%;
  min-height:220px;
  border-radius:14px;
  border:1px solid var(--border);
  background:linear-gradient(180deg,#ffffff 0%, #f6fbff 100%);
  padding:10px 12px;
  resize:vertical;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.des-fe-input{
  width:100%;
  border-radius:14px;
  border:1px solid var(--border);
  background:linear-gradient(180deg,#ffffff 0%, #f6fbff 100%);
  padding:10px 12px;
}

.des-fe-status{margin-top:8px;font-weight:800;font-size:12px;color:var(--muted);min-height:18px}
.des-fe-mini{margin-top:6px;font-size:12px;color:var(--muted)}

.des-fe-result{
  min-height:220px;
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px 12px;
  background:linear-gradient(180deg,#ffffff 0%, #f6fbff 100%);
  white-space:pre-wrap;
  word-break:break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.des-fe-mark{
  background:rgba(91,214,255,.22);
  border:1px solid rgba(47,125,255,.22);
  border-radius:8px;
  padding:0 3px;
}

.des-fe-flags{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:8px;
  color:var(--muted);
  font-weight:800
}

.des-fe-flags label{
  display:flex;
  gap:6px;
  align-items:center;
  border:1px solid var(--border);
  border-radius:999px;
  padding:6px 10px;
  background:rgba(255,255,255,.85);
}

.des-fe-tablewrap{
  overflow:auto;
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(255,255,255,.9);
}

.des-fe-table{width:100%;border-collapse:collapse;min-width:720px}
.des-fe-table th,.des-fe-table td{padding:10px;border-bottom:1px solid var(--border);text-align:left;font-size:12px;vertical-align:top}
.des-fe-table thead th{background:linear-gradient(180deg,#eaf3ff,#ffffff);position:sticky;top:0}
.des-fe-muted{color:var(--muted)}

.des-fe-deny{padding:12px;border-radius:14px}