@charset "UTF-8";

/* src/styles.scss */
:root {
  --font-main:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  --background: #f5f5f7;
  --bg-primary: #f5f5f7;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-elevated: #f0f0f2;
  --bg-hover: #eeeef0;
  --bg-input: #f5f5f7;
  --bg-badge: #f0f0f2;
  --bg-table-header: #f8f8fa;
  --bg-table-row-hover: #f5f5f7;
  --bg-overlay: rgba(0, 0, 0, 0.25);
  --bg-mobile-nav: rgba(255, 255, 255, 0.91);
  --border: #e0e0e4;
  --border-default: #e0e0e4;
  --border-light: #eeeef0;
  --border-strong: #c8c8cc;
  --text-primary: #111317;
  --text-secondary: #606873;
  --text-muted: #8a949d;
  --text-inverse: #ffffff;
  --text-on-accent: #ffffff;
  --primary: #0cbf0c;
  --primary-hover: #0aa80a;
  --primary-light: rgba(12, 191, 12, 0.15);
  --body: var(--background);
  --surface: var(--bg-secondary);
  --surface-hover: var(--bg-hover);
  --success: var(--primary);
  --success-hover: var(--primary-hover);
  --status-active: #0cbf0c;
  --status-moderation: #ffcc00;
  --status-banned: #ff2e31;
  --status-canceled: #ff5900;
  --status-nodata: #606873;
  --danger: #ff2e31;
  --danger-hover: #e0292c;
  --accent-blue: #0076ff;
  --accent-blue-light: rgba(0, 118, 255, 0.15);
  --accent-green: #0cbf0c;
  --accent-green-light: rgba(12, 191, 12, 0.15);
  --accent-orange: #ffa01f;
  --accent-purple: #9747ff;
  --accent-yellow: #ffcc00;
  --accent-red: #ff2e31;
  --sidebar-bg: #ffffff;
  --sidebar-active: rgba(12, 191, 12, 0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --input-min-height: 44px;
  --input-padding-x: 14px;
  --input-padding-y: 0;
  --input-font-size: 14px;
  --input-border-radius: 10px;
  --input-bg: var(--bg-input);
  --input-border: var(--border-default);
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
  --shadow-modal: 0 8px 32px rgba(0, 0, 0, 0.25);
}
[data-theme=dark] {
  --background: #0a0a0a;
  --bg-primary: #0a0a0a;
  --bg-secondary: #111317;
  --bg-card: #191b1f;
  --bg-elevated: #272b30;
  --bg-hover: #272b30;
  --bg-input: #1c1f25;
  --bg-badge: #272b30;
  --bg-table-header: #14161a;
  --bg-table-row-hover: #1c1f25;
  --bg-overlay: rgba(0, 0, 0, 0.5);
  --bg-mobile-nav: rgba(17, 19, 23, 0.94);
  --border: #272b30;
  --border-default: #272b30;
  --border-light: #1e2228;
  --border-strong: #373c43;
  --text-primary: #ffffff;
  --text-secondary: #8a949d;
  --text-muted: #606873;
  --text-inverse: #111317;
  --text-on-accent: #ffffff;
  --primary-light: rgba(12, 191, 12, 0.125);
  --accent-blue-light: rgba(0, 118, 255, 0.125);
  --accent-green-light: rgba(12, 191, 12, 0.125);
  --sidebar-bg: #111317;
  --sidebar-active: rgba(12, 191, 12, 0.2);
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-hover: rgba(0, 0, 0, 0.4);
  --shadow-modal: 0 8px 32px rgba(0, 0, 0, 0.5);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-main);
  -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],
  input[type=number],
  input[type=search],
  input[type=url],
  input:not([type]),
  textarea,
  select {
    font-size: 16px;
  }
}
.table-header-row {
  background: var(--bg-table-header);
  height: 44px;
}
.table-header-row th {
  padding: 0 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}
.table-data-row {
  background: var(--bg-card);
  height: 52px;
  border-bottom: 1px solid var(--border-light);
}
.table-data-row:hover {
  background: var(--bg-table-row-hover);
}
.table-data-row td {
  padding: 0 16px;
  font-size: 14px;
  color: var(--text-primary);
  vertical-align: middle;
}

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