:root {
  --primary: #0f1419;
  --bg: #fdfdfc;
  --bg-card: #ffffff;
  --text: #1c1c1c;
  --text-muted: #737373;
  --border: #eaebec;
  --accent: #2563eb;
  --success: #10b981;
  --warning: #f59e0b;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --radius: 8px;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

/* Typography */
h1 { font-size: 2rem; margin-bottom: 1.5rem; font-weight: 600; }
h2 { font-size: 1.5rem; margin-bottom: 1rem; font-weight: 500; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; font-weight: 500; }
p { color: var(--text-muted); margin-bottom: 1rem; }

/* Login Container */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.login-card {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.login-card h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; margin-bottom: 0.5rem; }

/* Forms */
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--text); }
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--primary); }

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-sans);
  transition: all 0.2s;
  border: none;
  width: 100%;
  text-align: center;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: #000; }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { background: #f5f5f5; }

/* Admin Dashboard Specific */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.client-list { list-style: none; }
.client-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.client-item:last-child { border-bottom: none; }

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.status-pending { background: #fff3cd; color: #856404; }
.status-in_progress { background: #cce5ff; color: #004085; }
.status-completed { background: #d4edda; color: #155724; }

/* Alert */
.alert { padding: 1rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: 0.9rem; }
.alert-error { background: #f8dbdb; color: #842029; }
