/* AskL Admin System CSS
   Canonical dark theme extracted from super_LISTINGS_WORK.html
*/

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  margin: 20px;
  background: #0b172a;
  color: #e5e7ff;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
}

h1 { margin-bottom: 16px; }

.card {
  background: #112238;
  border: 1px solid #1d324b;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
}

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

input, select, button {
  background: #0c1d30;
  color: #e5e7ff;
  border: 1px solid #274161;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
}

button {
  cursor: pointer;
  background: #1d5d6f;
  border-color: #1d5d6f;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

th, td {
  border-bottom: 1px solid #1d324b;
  padding: 8px;
  text-align: left;
  font-size: 13px;
}

th {
  background: #112238;
  position: sticky;
  top: 0;
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #274161;
  font-size: 12px;
}

.small { font-size: 12px; opacity: 0.8; }

.err { color: #ff8b94; }
.succ { color: #79ffcc; }

select option {
  background: #ffffff;
  color: #111111;
}

