/* ============================================================
   Google Cloud Console recreation — base tokens & reset
   ============================================================ */
:root {
  --g-blue: #1a73e8;
  --g-blue-hover: #1765cc;
  --g-blue-active: #1b66c9;
  --g-blue-light: #e8f0fe;
  --g-blue-light-hover: #d2e3fc;
  --g-text: #202124;
  --g-text-2: #5f6368;
  --g-text-3: #80868b;
  --g-border: #dadce0;
  --g-border-light: #e8eaed;
  --g-bg: #ffffff;
  --g-bg-hover: #f1f3f4;
  --g-bg-subtle: #f8f9fa;
  --g-green: #188038;
  --g-green-light: #e6f4ea;
  --g-red: #d93025;
  --g-red-light: #fce8e6;
  --g-yellow: #f9ab00;
  --g-yellow-light: #fef7e0;
  --g-purple: #9334e6;
  --g-cyan: #12a5af;
  --topbar-h: 48px;
  --nav-w: 280px;
  --radius: 8px;
  --shadow-1: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
  --shadow-2: 0 1px 3px 0 rgba(60,64,67,.3), 0 4px 8px 3px rgba(60,64,67,.15);
  --shadow-3: 0 2px 6px 2px rgba(60,64,67,.15), 0 1px 2px 0 rgba(60,64,67,.3);
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display: 'Google Sans', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Roboto Mono', 'Courier New', monospace;
}

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

html, body {
  height: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--g-text);
  background: var(--g-bg);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}
button:disabled { cursor: default; }

a { color: var(--g-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

input, select, textarea {
  font-family: inherit;
  font-size: 14px;
  color: var(--g-text);
}

::selection { background: #b3d7ff; }

/* Material Symbols */
.ms {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  user-select: none;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.ms.fill { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }
.ms.sz18 { font-size: 18px; font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20; }
.ms.sz20 { font-size: 20px; font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; }

/* scrollbars */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-thumb { background: #dadce0; border-radius: 8px; border: 3px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: #bdc1c6; border: 3px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-track { background: transparent; }

:focus-visible { outline: 2px solid var(--g-blue); outline-offset: -1px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
