@charset "UTF-8";

/* src/styles.scss */
:root {
  --background: #FFFFFF;
  --surface: #F8F9FA;
  --surface-hover: #E9ECEF;
  --border: #DEE2E6;
  --text-primary: #212529;
  --text-secondary: #6C757D;
  --primary: #02B0FB;
  --primary-hover: #0298E6;
  --success: #5FCD17;
  --success-hover: #4CAF50;
  --danger: #FF2E31;
  --danger-hover: #DC3545;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
  --input-bg: #FFFFFF;
}
[data-theme=dark] {
  --background: #0A0A0A;
  --surface: #272B30;
  --surface-hover: #3A3F45;
  --border: #3A3F45;
  --text-primary: #FFFFFF;
  --text-secondary: #9CA3AF;
  --primary: #02B0FB;
  --primary-hover: #0298E6;
  --success: #5FCD17;
  --success-hover: #4CAF50;
  --danger: #FF2E31;
  --danger-hover: #DC3545;
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-hover: rgba(0, 0, 0, 0.4);
  --input-bg: #212529;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--background);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}
html {
  font-size: 16px;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
}
@media (hover: none) and (pointer: coarse) {
  button,
  .btn-primary,
  .btn-logout,
  .btn-back,
  .theme-toggle {
    min-height: 44px;
    min-width: 44px;
  }
  input,
  textarea,
  select {
    min-height: 44px;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=date],
  input[type=password] {
    font-size: 16px;
  }
}

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