/* import font */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* global color variables start */
:root {
  --color-primary: #1976d2;
  --color-primary-hover: #1565c0;
  --color-primary-light: #f1f7ff;
  --color-text-dark: #313131;
  --color-text-light: #ffffff;
  --color-muted: #707070;
  --color-muted-hover: #555555;
  --color-background: #f3f6fb;
  --color-background-light: #fafafa;
  --color-card: #ffffff;
  --color-border: #e0e0e0;
  --color-secondary: #e0e0e0;
  --color-accent: #43a047;
  --color-accent-hover: #388e3c;
  --color-danger: #e53935;
  --color-danger-hover: #d32f2f;
  --color-white: #fff;
  --color-disabled: #f1f2f4;
}
/* global color variables end */

/* global reset styles start */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  font-size: 1rem;
}

body {
  font-family: "Inter", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  background: var(--color-background);
  color: var(--color-text-dark);
}

main {
  flex: 1;
  display: flex;
  padding: 2rem 1rem;
}
/* global reset styles end */

/* app lock state start */
body.app-locked {
  visibility: hidden;
  pointer-events: none;
}
/* app lock state end */

/* global header and footer style start */
header,
footer {
  background: var(--color-primary);
  color: var(--color-text-light);
  text-align: center;
  padding: 1.5rem 1rem;
}

header h1 {
  font-size: 1.6rem;
  font-weight: 700;
}

footer p {
  font-size: 0.9rem;
}
/* global header and footer style end */
