/* AI Maestro V2 — Admin Panel Styles */
/* Shares dark theme palette with dashboard.css and login.css */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: #0d1117;
  color: #c9d1d9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}

/* Page wrapper */
.admin-wrapper { max-width: 860px; margin: 0 auto; padding: 24px 16px; }

/* Header */
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #21262d;
}
.admin-title { font-size: 1.1rem; color: #c9d1d9; }
.back-link  { font-size: 0.8rem; color: #8b949e; text-decoration: none; }
.back-link:hover { color: #c9d1d9; }

/* Flash messages */
.flash-msg {
  min-height: 1.4em;
  margin-bottom: 12px;
  font-size: 0.85rem;
  border-radius: 6px;
  padding: 0;
}
.flash-msg.success { color: #3fb950; }
.flash-msg.error   { color: #f85149; }

/* Users table */
.users-table {
  width: 100%;
  border-collapse: collapse;
  background: #161b22;
  border: 1px solid #21262d;
  border-radius: 6px;
  overflow: hidden;
}
.users-table th {
  text-align: left;
  padding: 10px 14px;
  background: #1c2128;
  color: #8b949e;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.users-table td {
  padding: 10px 14px;
  border-top: 1px solid #21262d;
  color: #c9d1d9;
}
.users-table tbody tr:hover td { background: #21262d; }

.loading-row { color: #8b949e; font-style: italic; }

/* Role dropdown */
.users-table select {
  background: #21262d;
  border: 1px solid #30363d;
  border-radius: 4px;
  color: #c9d1d9;
  font-family: inherit;
  font-size: 0.85rem;
  padding: 4px 8px;
}

/* Save button */
.save-btn {
  background: #238636;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 5px 12px;
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}
.save-btn:hover    { background: #2ea043; }
.save-btn:disabled { background: #21262d; color: #8b949e; cursor: not-allowed; }
