/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/styles.scss?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --bg: #0e0e12;
  --surface: #17171d;
  --surface-alt: #1f1f27;
  --surface-hover: #26262f;
  --border: #2b2b35;
  --gold: #d9b34e;
  --gold-hover: #e9c766;
  --gold-dim: #8a712f;
  --text: #f2f0eb;
  --text-muted: #a3a1ad;
  --text-faint: #6f6d7a;
  --success: #3ecf8e;
  --danger: #ef5b5b;
  --warning: #f5a623;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  --font: "Vazirmatn", Tahoma, sans-serif;
}

:root[data-theme=light] {
  --bg: #f7f5ef;
  --surface: #ffffff;
  --surface-alt: #f1efe6;
  --surface-hover: #e8e4d6;
  --border: #e0dbcb;
  --gold: #b8862e;
  --gold-hover: #a1751f;
  --gold-dim: #cdab6c;
  --text: #211f1a;
  --text-muted: #5c584e;
  --text-faint: #8c8778;
  --success: #1f9d63;
  --danger: #cf3d3d;
  --warning: #b0730f;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 0.6em;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
  color: var(--text-muted);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
  background: var(--surface-alt);
  color: var(--text);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn:hover:not(:disabled) {
  background: var(--surface-hover);
}

.btn-primary {
  background: var(--gold);
  color: #17130a;
  border-color: var(--gold);
}

.btn-primary:hover:not(:disabled) {
  background: var(--gold-hover);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-danger {
  background: transparent;
  border-color: var(--danger);
  color: var(--danger);
}

.btn-danger:hover:not(:disabled) {
  background: rgba(239, 91, 91, 0.12);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 7px 14px;
  font-size: 13px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field label {
  font-size: 13px;
  color: var(--text-muted);
}

.field input, .field select, .field textarea {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease;
  width: 100%;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: var(--surface-alt);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.badge-success {
  color: var(--success);
  border-color: var(--success);
}

.badge-warning {
  color: var(--warning);
  border-color: var(--warning);
}

.badge-danger {
  color: var(--danger);
  border-color: var(--danger);
}

.badge-gold {
  color: var(--gold);
  border-color: var(--gold);
}

.spinner {
  width: 22px;
  height: 22px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-faint);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-title h2 {
  margin: 0;
  font-size: 20px;
}

.section-title a {
  color: var(--gold);
  font-size: 13px;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--surface-hover);
  border-radius: 10px;
}

.toast-host {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: var(--shadow);
  min-width: 240px;
  font-size: 14px;
}

.toast.success {
  border-color: var(--success);
}

.toast.error {
  border-color: var(--danger);
}

/*# sourceMappingURL=styles.css.map*/