:root {
  --petrol-dark: #0a3a3f;
  --petrol-primary: #0f5c63;
  --petrol-accent: #1c8a92;
  --petrol-light: #7fc3c8;
  --petrol-tint: #e6f2f2;

  --text: #1a1a1a;
  --text-secondary: #5c6666;
  --surface: #f4f7f7;
  --border: #dde5e5;

  --status-red-bg: #f8d9d6;
  --status-red-text: #7c1f17;
  --status-orange-bg: #fbe3cf;
  --status-orange-text: #7a3d0d;
  --status-yellow-bg: #fcf0ce;
  --status-yellow-text: #6b4e07;
  --status-green-bg: #dceee1;
  --status-green-text: #235939;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--surface);
  color: var(--text);
}

.fmp-topbar {
  background: var(--petrol-dark);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fmp-topbar .logo { color: #fff; font-weight: 600; font-size: 16px; text-decoration: none; }
.fmp-topbar nav a { color: #c6e2e3; font-size: 13px; text-decoration: none; margin-left: 20px; }
.fmp-topbar nav a:hover { color: #fff; }

.fmp-container { max-width: 960px; margin: 0 auto; padding: 24px; }

.fmp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.fmp-btn {
  display: inline-block;
  background: var(--petrol-primary);
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
.fmp-btn:hover { background: var(--petrol-accent); }

.fmp-btn-secondary {
  background: var(--surface);
  color: var(--petrol-dark);
  border: 1px solid var(--border);
}

.fmp-btn-danger { background: var(--status-red-text); }

.fmp-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 14px;
}

.fmp-label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--text-secondary); }

.fmp-table { width: 100%; border-collapse: collapse; }
.fmp-table th { text-align: left; font-size: 12px; color: var(--text-secondary); padding: 8px 12px; border-bottom: 1px solid var(--border); }
.fmp-table td { padding: 12px; border-bottom: 1px solid var(--border); font-size: 14px; }

.fmp-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
}
.fmp-pill.aktiv { background: var(--status-green-bg); color: var(--status-green-text); }
.fmp-pill.gesperrt { background: var(--status-red-bg); color: var(--status-red-text); }

.fmp-error {
  background: var(--status-red-bg);
  color: var(--status-red-text);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 16px;
}

.fmp-login-box {
  max-width: 360px;
  margin: 80px auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
