/* src/styles.css */
:root {
  --primary-color: #e3002b;
  --primary-light: rgba(227, 0, 43, 0.05);
  --primary-border: rgba(227, 0, 43, 0.3);
  --secondary-black: #585858;
  --secondary-purple: #b2007c;
  --secondary-pink: #e75113;
  --secondary-orange1: #bd094a;
  --secondary-orange2: #ef8400;
  --secondary-yellow: #ef8400;
  --text-dark: #333;
  --text-medium: #585858;
  --text-light: #999;
  --border-color: rgba(0, 0, 0, 0.1);
  --border-light: rgba(0, 0, 0, 0.05);
  --bg-light: #ffffff;
  --bg-white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}
*,
*:not(ul):not(ol):not(li) {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  min-height: 0;
  width: 100%;
  font-family:
    "Calibri",
    "Candara",
    "Segoe UI",
    "Roboto",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--bg-white);
}
a {
  color: var(--primary-color);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button {
  cursor: pointer;
  font-family:
    "Calibri",
    "Candara",
    "Segoe UI",
    "Roboto",
    "Helvetica Neue",
    Arial,
    sans-serif;
}
body.pwa-mode {
  width: 100%;
  height: 100%;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.text-primary {
  color: var(--primary-color);
}
.text-center {
  text-align: center;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  html {
    font-size: 17px;
  }
}
@media all and (display-mode: standalone), all and (display-mode: fullscreen), all and (display-mode: minimal-ui) {
  body {
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
