@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap";

/* src/styles.scss */
:root {
  --primary: #fc4300;
  --primary-hover: #ff5a1f;
  --primary-shadow: rgba(252, 67, 0, 0.3);
  --primary-shadow-hover: rgba(252, 67, 0, 0.4);
  --blue: #2563eb;
  --blue-hover: #1d4ed8;
  --blue-shadow: rgba(37, 99, 235, 0.3);
  --success: #10b981;
}
:root.dark-mode,
:root {
  --bg: #1a1a1a;
  --bg-hero: #1a1a1a;
  --surface: #2a2a2a;
  --surface-dark: #1f1f1f;
  --text: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #9a9a9a;
  --text-light: #c0c0c0;
  --btn-primary-bg: var(--primary);
  --btn-primary-hover-bg: var(--primary-hover);
  --btn-primary-text: var(--text);
  --btn-primary-shadow: var(--primary-shadow);
  --btn-primary-shadow-hover: var(--primary-shadow-hover);
  --btn-secondary-bg: var(--blue);
  --btn-secondary-hover-bg: var(--blue-hover);
  --btn-secondary-text: var(--text);
  --btn-secondary-shadow: var(--blue-shadow);
  --btn-ghost-bg: transparent;
  --btn-ghost-hover-bg: rgba(252, 67, 0, 0.1);
  --btn-ghost-text: var(--text);
  --btn-ghost-border: var(--border);
  --card: rgba(42, 42, 42, 0.95);
  --border: rgba(255, 255, 255, 0.15);
  --border-light: rgba(255, 255, 255, 0.25);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --stone-950: #0c0a09;
}
:root.light-mode {
  --bg: #ffffff;
  --bg-hero: #fafafa;
  --surface: #ffffff;
  --surface-dark: #fafafa;
  --text: #000000;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --text-light: #333333;
  --btn-primary-bg: var(--primary);
  --btn-primary-hover-bg: var(--primary-hover);
  --btn-primary-text: #ffffff;
  --btn-primary-shadow: var(--primary-shadow);
  --btn-primary-shadow-hover: var(--primary-shadow-hover);
  --btn-secondary-bg: var(--blue);
  --btn-secondary-hover-bg: var(--blue-hover);
  --btn-secondary-text: #ffffff;
  --btn-secondary-shadow: var(--blue-shadow);
  --btn-ghost-bg: transparent;
  --btn-ghost-hover-bg: rgba(252, 67, 0, 0.1);
  --btn-ghost-text: var(--text);
  --btn-ghost-border: var(--border);
  --card: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --border-light: rgba(0, 0, 0, 0.15);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
:root {
  scrollbar-color: rgba(255, 255, 255, 0.35) var(--surface);
  scrollbar-width: thin;
}
:root.light-mode {
  scrollbar-color: rgba(0, 0, 0, 0.25) #e5e5e5;
}
:root ::-webkit-scrollbar,
body ::-webkit-scrollbar,
.dashboard-container ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
:root ::-webkit-scrollbar-track,
body ::-webkit-scrollbar-track,
.dashboard-container ::-webkit-scrollbar-track {
  background: var(--surface);
  border-radius: 4px;
}
:root ::-webkit-scrollbar-thumb,
body ::-webkit-scrollbar-thumb,
.dashboard-container ::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}
:root ::-webkit-scrollbar-thumb:hover,
body ::-webkit-scrollbar-thumb:hover,
.dashboard-container ::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}
.card,
.card-small,
.card-large,
.box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.card-large {
  border-radius: 16px;
  padding: 32px;
}
.card-small {
  border-radius: 8px;
  padding: 16px;
}
.card:hover,
.card-large:hover,
.card-small:hover,
.box:hover {
  background: var(--surface-dark);
  border-color: var(--border-light);
}
.form-input,
.form-input-small,
.form-control {
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}
.form-input:focus,
.form-input-small:focus,
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(252, 67, 0, 0.1);
}
.form-input:disabled,
.form-input-small:disabled,
.form-control:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: var(--surface-dark);
}
.form-input::placeholder,
.form-input-small::placeholder,
.form-control::placeholder {
  color: var(--text-muted);
}
.form-input-small {
  padding: 8px 12px;
  font-size: 14px;
  min-height: 36px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group:last-child {
  margin-bottom: 0;
}
.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.btn,
.btn-large,
.btn-small,
.btn-danger,
.btn-ghost,
.btn-secondary,
.btn-primary {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.btn:disabled,
.btn-large:disabled,
.btn-small:disabled,
.btn-danger:disabled,
.btn-ghost:disabled,
.btn-secondary:disabled,
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover:not(:disabled) {
  background: var(--primary-hover);
  box-shadow: 0 8px 16px rgba(252, 67, 0, 0.3);
}
.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-secondary:hover:not(:disabled) {
  background: var(--surface-dark);
  border-color: var(--border-light);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover:not(:disabled) {
  background: var(--surface-dark);
  border-color: var(--primary);
  color: var(--primary);
}
.btn-danger {
  background: transparent;
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}
.btn-danger:hover:not(:disabled) {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
}
:root.light-mode .btn-danger:hover:not(:disabled) {
  background: rgba(239, 68, 68, 0.08);
}
.btn-small {
  padding: 6px 12px;
  font-size: 13px;
}
.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}
.section {
  margin-bottom: 32px;
}
.section:last-child {
  margin-bottom: 0;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.section-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.section-content {
  width: 100%;
}
.info-group {
  margin-bottom: 24px;
}
.info-group:last-child {
  margin-bottom: 0;
}
.info-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.info-group .info-value {
  font-size: 16px;
  color: var(--text);
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}
.badge.verified,
.badge.enabled,
.badge.success {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
:root.light-mode .badge.verified,
:root.light-mode .badge.enabled,
:root.light-mode .badge.success {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
}
.badge.unverified,
.badge.disabled,
.badge.error {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
:root.light-mode .badge.unverified,
:root.light-mode .badge.disabled,
:root.light-mode .badge.error {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.25);
}
.badge.warning {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
:root.light-mode .badge.warning {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.25);
}
.badge.info {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
:root.light-mode .badge.info {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
}
.badge.active {
  background: rgba(252, 67, 0, 0.2);
  color: var(--primary);
  border: 1px solid rgba(252, 67, 0, 0.3);
}
:root.light-mode .badge.active {
  background: rgba(252, 67, 0, 0.12);
  border-color: rgba(252, 67, 0, 0.25);
}
.badge.completed {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
:root.light-mode .badge.completed {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
}
.error-message,
.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ef4444;
  font-size: 14px;
  margin-bottom: 16px;
}
:root.light-mode .error-message,
:root.light-mode .alert-error {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2);
}
.success-message,
.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: #10b981;
  font-size: 14px;
  margin-bottom: 16px;
}
:root.light-mode .success-message,
:root.light-mode .alert-success {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
}
.warning-message,
.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 16px;
}
:root.light-mode .warning-message,
:root.light-mode .alert-warning {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
}
.info-message,
.alert-info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: #3b82f6;
  font-size: 14px;
  margin-bottom: 16px;
}
:root.light-mode .info-message,
:root.light-mode .alert-info {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
}
.empty-state {
  text-align: center;
  padding: 48px;
  color: var(--text-muted);
}
.empty-state .empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.empty-state .empty-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.empty-state .empty-description {
  font-size: 14px;
  color: var(--text-muted);
}
.loading-spinner {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.text-muted {
  color: var(--text-muted);
}
.text-light {
  color: var(--text-light);
}
.text-primary {
  color: var(--primary);
}
.bg-surface {
  background: var(--surface);
}
.bg-surface-dark {
  background: var(--surface-dark);
}
.border {
  border: 1px solid var(--border);
}
.border-light {
  border: 1px solid var(--border-light);
}
.shadow {
  box-shadow: var(--shadow);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    "Inter",
    "Plus Jakarta Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  background-color: var(--bg);
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}
body::before,
body::after {
  content: "";
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background:
    linear-gradient(
      45deg,
      rgba(37, 99, 235, 0.1),
      rgba(124, 58, 237, 0.1));
  filter: blur(40px);
  animation: float 20s ease-in-out infinite;
  z-index: -1;
}
body::before {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
body::after {
  top: 60%;
  right: 10%;
  animation-delay: -10s;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
  }
  50% {
    transform: translateY(0px) rotate(180deg);
  }
  75% {
    transform: translateY(20px) rotate(270deg);
  }
}
.floating-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(37, 99, 235, 0.3);
  border-radius: 50%;
  animation: particle-float 15s linear infinite;
}
.particle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  top: 40%;
  left: 80%;
  animation-delay: -5s;
}
.particle:nth-child(3) {
  top: 70%;
  left: 30%;
  animation-delay: -10s;
}
.particle:nth-child(4) {
  top: 30%;
  left: 70%;
  animation-delay: -15s;
}
.particle:nth-child(5) {
  top: 80%;
  left: 60%;
  animation-delay: -20s;
}
@keyframes particle-float {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(0);
    opacity: 0;
  }
}
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(37, 99, 235, 0.03) 1px,
      transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

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