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

/* src/styles.scss */
:root {
  --radius: 0.5rem;
  --aio-charcoal: #24282b;
  --aio-charcoal-dark: #1a1d20;
  --aio-charcoal-light: #2e3338;
  --aio-blue: #008bce;
  --aio-blue-hover: #0079b3;
  --aio-blue-light: #e6f4fb;
  --aio-blue-tint: #ecf2fe;
  --status-approved: #2f855a;
  --status-approved-bg: #f0fff4;
  --status-approved-border: #c6f6d5;
  --status-review: #008bce;
  --status-review-bg: #e6f4fb;
  --status-review-border: #bee3f8;
  --status-pending: #d69e2e;
  --status-pending-bg: #fffbeb;
  --status-pending-border: #fef3c7;
  --status-revision: #c05621;
  --status-revision-bg: #fff7ed;
  --status-revision-border: #fed7aa;
  --status-finalized: #553c9a;
  --status-finalized-bg: #faf5ff;
  --status-finalized-border: #e9d8fd;
  --status-not-started: #718096;
  --status-not-started-bg: #f7fafc;
  --status-not-started-border: #e2e8f0;
  --sidebar-bg: #24282b;
  --sidebar-width: 256px;
  --sidebar-text: rgba(255,255,255,0.65);
  --sidebar-active-bg: rgba(0,139,206,0.15);
  --sidebar-active-border: #008bce;
  --sidebar-hover-bg: #2e3338;
  --content-bg: #f5f6f7;
  --card-bg: #ffffff;
  --card-border: #EDEDED;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  font-family:
    "Inter",
    "Segoe UI",
    "Roboto",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-feature-settings:
    "cv02",
    "cv03",
    "cv04",
    "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--content-bg);
  color: #1a202c;
  font-size: 14px;
  line-height: 1.5;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}
.tabular-nums {
  font-variant-numeric: tabular-nums;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-enter {
  animation: fadeInUp 0.25s ease-out forwards;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid;
  white-space: nowrap;
}
.status-badge-approved {
  color: var(--status-approved);
  background-color: var(--status-approved-bg);
  border-color: var(--status-approved-border);
}
.status-badge-review {
  color: var(--status-review);
  background-color: var(--status-review-bg);
  border-color: var(--status-review-border);
}
.status-badge-pending {
  color: var(--status-pending);
  background-color: var(--status-pending-bg);
  border-color: var(--status-pending-border);
}
.status-badge-revision {
  color: var(--status-revision);
  background-color: var(--status-revision-bg);
  border-color: var(--status-revision-border);
}
.status-badge-finalized {
  color: var(--status-finalized);
  background-color: var(--status-finalized-bg);
  border-color: var(--status-finalized-border);
}
.status-badge-not-started {
  color: var(--status-not-started);
  background-color: var(--status-not-started-bg);
  border-color: var(--status-not-started-border);
}
.aio-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
  padding: 20px;
  box-shadow: none;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--aio-blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s ease;
  text-decoration: none;
}
.btn-primary:hover {
  background-color: var(--aio-blue-hover);
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #ffffff;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 0.5rem;
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.btn-secondary:hover {
  background-color: #f9fafb;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 0.375rem;
  color: #9ca3af;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.btn-ghost:hover {
  background-color: #f3f4f6;
  color: #4b5563;
}
.btn-danger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #fef2f2;
  color: #dc2626;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.btn-danger:hover {
  background-color: #fee2e2;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 12px;
  font-weight: 500;
  color: #374151;
}
.form-input {
  width: 100%;
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
  padding: 8px 12px;
  font-size: 14px;
  color: #111827;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
}
.form-input::placeholder {
  color: #9ca3af;
}
.form-input:focus {
  border-color: var(--aio-blue);
  box-shadow: 0 0 0 3px rgba(0, 139, 206, 0.15);
}
.form-input.ng-invalid.ng-touched {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}
.form-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 2px;
}
.app-shell {
  display: flex;
  height: 100vh;
  overflow: hidden;
}
.sidebar {
  width: var(--sidebar-width);
  min-width: var(--sidebar-width);
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 100;
}
.sidebar::-webkit-scrollbar {
  width: 4px;
}
.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
}
.sidebar-logo {
  padding: 20px 16px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.sidebar-logo-img {
  width: 80px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.sidebar-section-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  padding: 16px 16px 6px;
}
.sidebar-nav {
  flex: 1;
  padding: 8px 0;
}
.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--sidebar-text);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.sidebar-nav-item:hover {
  background-color: var(--sidebar-hover-bg);
  color: rgba(255, 255, 255, 0.9);
}
.sidebar-nav-item.active {
  background-color: var(--sidebar-active-bg);
  color: #ffffff;
  border-left-color: var(--sidebar-active-border);
}
.sidebar-footer {
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--aio-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  flex-shrink: 0;
}
.sidebar-user-info {
  flex: 1;
  min-width: 0;
}
.sidebar-user-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-user-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: capitalize;
}
.main-content {
  flex: 1;
  overflow-y: auto;
  background: var(--content-bg);
  display: flex;
  flex-direction: column;
}
.top-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--card-border);
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.page-content {
  flex: 1;
  padding: 24px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.page-header {
  margin-bottom: 24px;
}
.page-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}
.page-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.grid-main-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
}
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
  padding: 20px;
}
.stat-card .stat-label {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.stat-card .stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat-card .stat-sub {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}
.stat-card .stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.aio-table-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
  overflow: hidden;
}
.aio-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.aio-table thead tr {
  border-bottom: 1px solid var(--card-border);
  background: rgba(249, 250, 251, 0.5);
}
.aio-table thead th {
  text-align: left;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.aio-table tbody tr {
  border-bottom: 1px solid var(--card-border);
  transition: background-color 0.1s ease;
}
.aio-table tbody tr:last-child {
  border-bottom: none;
}
.aio-table tbody tr:hover {
  background: rgba(249, 250, 251, 0.5);
}
.aio-table tbody td {
  padding: 12px 16px;
  color: #374151;
}
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  text-align: center;
}
.empty-state .empty-icon {
  width: 56px;
  height: 56px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #9ca3af;
}
.empty-state .empty-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}
.empty-state .empty-desc {
  font-size: 14px;
  color: #6b7280;
  max-width: 280px;
}
.spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(0, 139, 206, 0.2);
  border-top-color: var(--aio-blue);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.spinner-lg {
  width: 36px;
  height: 36px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loading-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 0.5rem;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideInRight 0.25s ease-out;
  max-width: 360px;
}
.toast.toast-success {
  background: #f0fff4;
  color: #2f855a;
  border: 1px solid #c6f6d5;
}
.toast.toast-error {
  background: #fff5f5;
  color: #c53030;
  border: 1px solid #fed7d7;
}
.toast.toast-info {
  background: var(--aio-blue-light);
  color: var(--aio-blue);
  border: 1px solid #bee3f8;
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
.mobile-overlay.visible {
  display: block;
}
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--card-border);
  z-index: 100;
  padding: 8px 0;
}
.mobile-bottom-nav .bottom-nav-items {
  display: flex;
  justify-content: space-around;
}
.mobile-bottom-nav .bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 12px;
  color: #9ca3af;
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: none;
  transition: color 0.15s ease;
}
.mobile-bottom-nav .bottom-nav-item svg {
  width: 22px;
  height: 22px;
}
.mobile-bottom-nav .bottom-nav-item.active {
  color: var(--aio-blue);
}
.mobile-header {
  display: none;
  background: var(--sidebar-bg);
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.mobile-header .mobile-logo {
  display: flex;
  align-items: center;
}
.mobile-header .mobile-logo-img {
  height: 28px;
  width: auto;
  display: block;
}
.mobile-header .mobile-menu-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 4px;
}
@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    left: -256px;
    top: 0;
    bottom: 0;
    z-index: 200;
    transition: left 0.3s ease;
  }
  .sidebar.open {
    left: 0;
  }
  .mobile-header {
    display: flex;
  }
  .mobile-bottom-nav {
    display: block;
  }
  .main-content {
    padding-bottom: 70px;
  }
  .page-content {
    padding: 16px;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-main-sidebar {
    grid-template-columns: 1fr;
  }
  .top-bar {
    display: none;
  }
}
.priority-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid;
}
.priority-high {
  color: #c05621;
  background: #fff7ed;
  border-color: #fed7aa;
}
.priority-medium {
  color: #d69e2e;
  background: #fffbeb;
  border-color: #fef3c7;
}
.priority-low {
  color: #2f855a;
  background: #f0fff4;
  border-color: #c6f6d5;
}
.clock-display {
  font-size: 48px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
  color: #111827;
  line-height: 1;
}
.clock-display-sm {
  font-size: 32px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
  color: #111827;
}
.trade-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: var(--aio-blue-tint);
  color: var(--aio-blue);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
}
.message-bubble {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.message-bubble.sent {
  background: var(--aio-blue);
  color: #ffffff;
  border-bottom-right-radius: 4px;
  margin-left: auto;
}
.message-bubble.received {
  background: #f3f4f6;
  color: #111827;
  border-bottom-left-radius: 4px;
}
.divider {
  height: 1px;
  background: var(--card-border);
  margin: 16px 0;
}
.text-muted {
  color: #6b7280;
}
.text-primary {
  color: var(--aio-blue);
}
.text-success {
  color: var(--status-approved);
}
.text-warning {
  color: var(--status-pending);
}
.text-danger {
  color: var(--status-revision);
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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