﻿/* 
 * Teamz — Global Styles (Variables, Base, Buttons, Status)
 */

:root {
  --green: #1dbf73;
  --green-dark: #17a863;
  --green-glow: rgba(29, 191, 115, .18);
  --ink: #0d1117;
  --ink-soft: #3d4451;
  --muted: #6e7a8a;
  --surface: #ffffff;
  --surface-alt: #f4f7f4;
  --border: #e2e8e2;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, .09);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, .12);
  --radius: 14px;
  --radius-pill: 999px;
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', 'Inter', sans-serif; background: var(--surface); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Buttons ── */
.btn-primary { background: var(--green); color: #fff; padding: 12px 28px; border-radius: var(--radius-pill); font-weight: 700; border: none; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 20px var(--green-glow); }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--ink-soft); padding: 10px 24px; border-radius: var(--radius-pill); font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.btn-outline:hover { border-color: var(--green); color: var(--green); background: var(--surface-alt); }

/* ── Status Pills ── */
.status-pill { padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-approved, .status-active { background: #dcfce7; color: #166534; }
.status-rejected { background: #fee2e2; color: #991b1b; }

/* ── Global Responsiveness ── */
@media (max-width: 768px) {
  html { font-size: 15px; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}

