@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* Global styles for the Timesheet PWA */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background: #f6f8fa;
  color: #222;
}

body.dark-mode {
  background: #181c1f;
  color: #f6f8fa;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
  background: #23272b;
  color: #f6f8fa;
  border: 1px solid #444;
}

body.dark-mode .settings-form,
body.dark-mode .report-form-site-input,
body.dark-mode .report-form-reason-input {
  background: #23272b;
  color: #f6f8fa;
}

body.dark-mode .pdf-preview-content {
  background: #23272b;
  color: #f6f8fa;
}

*, *::before, *::after {
  box-sizing: border-box;
}

a {
  color: #235390;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

::-webkit-scrollbar {
  width: 8px;
  background: #eaf1fb;
}
::-webkit-scrollbar-thumb {
  background: #b0c4de;
  border-radius: 4px;
}
