/* Admin panel styles (no external assets) */
.admin-wrap{ padding: 26px 0 44px; }
.admin-header{
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 18px;
}
.admin-nav{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 10px; }
.table{
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
}
.table th, .table td{
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  text-align: left;
  vertical-align: top;
}
.table th{ color: rgba(233,238,246,0.85); font-size: 14px; }
.table td{ color: rgba(233,238,246,0.78); }
.table tr:hover td{ background: rgba(255,255,255,0.04); }

.alert{
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  margin: 12px 0;
}
.alert.error{ border-color: rgba(255, 99, 132, 0.55); background: rgba(255, 99, 132, 0.12); }
.alert.ok{ border-color: rgba(46, 204, 113, 0.55); background: rgba(46, 204, 113, 0.12); }

textarea.input{ min-height: 260px; resize: vertical; }
.small{ font-size: 14px; color: rgba(233,238,246,0.75); }
