/* [project]/apps/web/src/app/globals.css [app-client] (css) */
:root {
  --brand-primary: #0d1f3c;
  --brand-accent: #1a6bff;
  --brand-accent-2: #00d4aa;
  --brand-accent-warm: #ff8c42;
  --surface-base: #f5f7fa;
  --surface-card: #fff;
  --surface-raised: #fff;
  --surface-sunken: #eef1f6;
  --surface-overlay: #0d1f3c0f;
  --text-primary: #0d1f3c;
  --text-secondary: #4a5568;
  --text-tertiary: #8896ab;
  --text-on-dark: #fff;
  --text-accent: #1a6bff;
  --border-default: #e2e8f3;
  --border-strong: #c8d3e8;
  --border-focus: #1a6bff;
  --success: #00b87c;
  --warning: #f59e0b;
  --danger: #f03d3d;
  --info: #1a6bff;
  --sidebar-bg: #0d1f3c;
  --sidebar-active: #1a6bff26;
  --sidebar-hover: #ffffff0f;
  --sidebar-text: #ffffff8c;
  --sidebar-text-active: #fff;
  --sidebar-border: #ffffff0f;
  --sidebar-accent-line: #1a6bff;
  --shadow-xs: 0 1px 2px #0d1f3c0f;
  --shadow-sm: 0 2px 8px #0d1f3c14, 0 1px 2px #0d1f3c0a;
  --shadow-md: 0 4px 16px #0d1f3c1a, 0 2px 4px #0d1f3c0f;
  --shadow-lg: 0 12px 40px #0d1f3c24, 0 4px 12px #0d1f3c14;
  --shadow-xl: 0 24px 64px #0d1f3c2e, 0 8px 24px #0d1f3c1a;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
  --transition-fast: .12s ease;
  --transition-base: .2s ease;
  --transition-slow: .35s cubic-bezier(.4, 0, .2, 1);
}

*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--surface-base);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

h1 {
  letter-spacing: -.025em;
  color: var(--text-primary);
  font-size: 1.75rem;
  font-weight: 800;
}

h2 {
  letter-spacing: -.02em;
  font-size: 1.35rem;
  font-weight: 700;
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

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

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}

.button, .premium-btn.primary, .sfdc-btn-primary {
  background: var(--brand-accent);
  color: #fff;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: .01em;
  transition: all var(--transition-base);
  border: none;
  justify-content: center;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.25rem;
  font-family: inherit;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px #1a6bff4d;
}

.button:after, .premium-btn.primary:after, .sfdc-btn-primary:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, #ffffff1f 0%, #0000 60%);
  position: absolute;
  inset: 0;
}

.button:hover, .premium-btn.primary:hover, .sfdc-btn-primary:hover {
  background: #0f5ce0;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px #1a6bff61;
}

.button:active, .premium-btn.primary:active, .sfdc-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px #1a6bff40;
}

.button-secondary, .premium-btn.secondary, .sfdc-btn-secondary {
  background: var(--surface-card);
  color: var(--text-primary);
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  justify-content: center;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  font-family: inherit;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
}

.button-secondary:hover, .premium-btn.secondary:hover, .sfdc-btn-secondary:hover {
  background: var(--surface-sunken);
  border-color: var(--border-strong);
  color: var(--brand-accent);
}

.input, .input:is(select), input[type="text"], input[type="email"], input[type="password"], input[type="number"], select, textarea {
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-sm);
  width: 100%;
  color: var(--text-primary);
  background: var(--surface-card);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  appearance: auto;
  padding: .6rem .875rem;
  font-family: inherit;
  font-size: .875rem;
}

.input:focus, input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="number"]:focus, select:focus, textarea:focus {
  border-color: var(--border-focus);
  outline: none;
  box-shadow: 0 0 0 3px #1a6bff1f;
}

.input::placeholder, input::placeholder {
  color: var(--text-tertiary);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .4rem;
  font-size: .75rem;
  font-weight: 600;
  display: block;
}

.card {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  padding: 1.5rem;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.table-container, .sfdc-table-container {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

table, .sfdc-table {
  border-collapse: collapse;
  width: 100%;
  font-size: .85rem;
}

th, .sfdc-table th {
  background: var(--surface-sunken);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--border-default);
  white-space: nowrap;
  padding: 1rem 1.25rem;
  font-size: .68rem;
  font-weight: 700;
}

td, .sfdc-table td {
  border-bottom: 1px solid var(--border-default);
  color: var(--text-primary);
  vertical-align: middle;
  padding: .95rem 1.25rem;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr {
  transition: background var(--transition-fast);
  cursor: pointer;
}

tbody tr:hover {
  background: #f7f9ff;
}

.modal-overlay {
  z-index: 2000;
  -webkit-backdrop-filter: blur(6px);
  background: #0d1f3c73;
  justify-content: center;
  align-items: center;
  animation: .18s overlayIn;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes overlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-default);
  animation: .22s cubic-bezier(.34, 1.56, .64, 1) modalIn;
  overflow-y: auto;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(.96)translateY(8px);
  }

  to {
    opacity: 1;
    transform: scale(1)translateY(0);
  }
}

.modal-header {
  border-bottom: 1px solid var(--border-default);
  padding: 1.5rem 1.75rem 1.25rem;
}

.modal-header h2 {
  color: var(--text-primary);
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.modal-actions, .modal-buttons {
  justify-content: flex-end;
  gap: .75rem;
  margin-top: 1.75rem;
  display: flex;
}

.badge {
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .04em;
  align-items: center;
  gap: .35rem;
  padding: .25rem .65rem;
  font-size: .68rem;
  font-weight: 700;
  display: inline-flex;
}

.search-bar {
  background: var(--surface-card);
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-pill);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  display: flex;
}

.search-bar:focus-within {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px #1a6bff1a;
}

.search-bar input {
  width: 220px;
  color: var(--text-primary);
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: .85rem;
  box-shadow: none !important;
}

.search-bar input::placeholder {
  color: var(--text-tertiary);
}

.loading-state {
  height: 60vh;
  color: var(--brand-accent);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.spinner {
  border: 3px solid var(--border-default);
  border-top-color: var(--brand-accent);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: .8s linear infinite spin;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.mono {
  letter-spacing: -.01em;
  font-family: JetBrains Mono, monospace;
  font-size: .8em;
}

.glass-card {
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  background: #ffffffb8;
  border: 1px solid #ffffff80;
}

.type-badge {
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .22rem .65rem;
  font-size: .68rem;
  font-weight: 800;
  display: inline-block;
}

.type-customer {
  color: #1a6bff;
  background: #ebf5ff;
}

.type-prospect {
  color: #c2700f;
  background: #fff4eb;
}

.type-partner {
  color: #00875a;
  background: #ebfff6;
}

.type-competitor {
  color: #c53030;
  background: #fff1f1;
}

.sfdc-list-wrapper {
  background: var(--surface-base);
  min-height: 100vh;
  padding: 0 1.75rem 2rem;
}

.list-header {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-xs);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  padding: 1.1rem 1.5rem;
  display: flex;
}

.header-left {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.icon-badge {
  background: linear-gradient(135deg, var(--brand-accent), #4d94ff);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
  box-shadow: 0 4px 12px #1a6bff4d;
}

.list-title {
  color: var(--text-primary);
  letter-spacing: -.02em;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
}

.list-subtitle {
  color: var(--text-tertiary);
  margin-top: .15rem;
  font-size: .75rem;
  font-weight: 500;
}

.header-right {
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem;
  display: flex;
}

.search-box {
  background: var(--surface-sunken);
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  display: flex;
}

.search-box:focus-within {
  background: var(--surface-card);
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px #1a6bff1a;
}

.search-box input {
  color: var(--text-primary);
  background: none;
  border: none;
  outline: none;
  width: 200px;
  font-family: inherit;
  font-size: .84rem;
  box-shadow: none !important;
}

.search-box input::placeholder {
  color: var(--text-tertiary);
}

.sfdc-table-container {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.sfdc-table th {
  padding: 1rem 1.25rem;
}

.sfdc-table td {
  padding: .9rem 1.25rem;
}

.name-cell {
  flex-direction: column;
  gap: .15rem;
  display: flex;
}

.name-text {
  color: var(--brand-accent);
  font-size: .875rem;
  font-weight: 700;
}

.name-text:hover {
  text-decoration: underline;
}

.empty-row {
  text-align: center;
  color: var(--text-tertiary);
  font-size: .875rem;
  font-style: italic;
  padding: 3rem !important;
}

.sfdc-modal-form {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  display: grid;
}

.sfdc-modal-form .f-group {
  flex-direction: column;
  gap: .4rem;
  display: flex;
}

.sfdc-modal-form .f-group.full {
  grid-column: span 2;
}

.sfdc-modal-form label {
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .72rem;
  font-weight: 700;
}

.modal-buttons {
  border-top: 1px solid var(--border-default);
  grid-column: span 2;
  justify-content: flex-end;
  gap: .75rem;
  margin-top: .5rem;
  padding-top: .5rem;
  display: flex;
}

@media (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .sfdc-modal-form .f-group.full, .modal-buttons {
    grid-column: span 1;
  }

  .modal-content {
    width: 95%;
    max-height: 88vh;
  }

  .search-box input {
    width: 150px;
  }

  .list-header {
    padding: .9rem 1rem;
  }

  .sfdc-list-wrapper {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr !important;
  }

  .header-right {
    width: 100%;
  }

  .search-box {
    flex: 1;
  }

  .search-box input {
    width: 100%;
  }
}

@keyframes spinAnim {
  to {
    transform: rotate(360deg);
  }
}

.spin {
  animation: 1s linear infinite spinAnim;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-enter {
  animation: .3s pageIn;
}

.sfdc-modal-form .input, .sfdc-modal-form input, .sfdc-modal-form select, .sfdc-modal-form textarea {
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-sm);
  width: 100%;
  color: var(--text-primary);
  background: var(--surface-card);
  padding: .55rem .75rem;
  font-family: inherit;
  font-size: .84rem;
  transition: border-color .15s, box-shadow .15s;
}

.sfdc-modal-form .input:focus, .sfdc-modal-form input:focus, .sfdc-modal-form select:focus, .sfdc-modal-form textarea:focus {
  border-color: var(--brand-accent);
  outline: none;
  box-shadow: 0 0 0 3px #1a6bff1a;
}

.btn-primary {
  cursor: pointer;
  color: #fff;
  text-transform: none;
  background: #1e40af;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.25rem;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
  box-shadow: 0 4px 12px #1e40af40;
}

.btn-primary:hover {
  background: #1e3a8a;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px #1e40af59;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  cursor: not-allowed;
  box-shadow: none;
  background: #94a3b8;
  transform: none;
}

.btn-secondary {
  cursor: pointer;
  color: #1e40af;
  text-transform: none;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.25rem;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.btn-secondary:active {
  background: #f1f5f9;
}

.btn-secondary:disabled {
  color: #cbd5e1;
  cursor: not-allowed;
  border-color: #f1f5f9;
}

/* [project]/apps/web/src/components/AdminLayout.css [app-client] (css) */
.admin-layout {
  background: var(--surface-base);
  min-height: 100vh;
  display: flex;
}

.sidebar {
  background: var(--sidebar-bg);
  width: 256px;
  color: var(--sidebar-text);
  height: 100vh;
  transition: width var(--transition-slow);
  z-index: 1001;
  flex-direction: column;
  flex-shrink: 0;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
  box-shadow: 1px 0 #ffffff0a;
}

.sidebar.collapsed {
  width: 68px;
}

.sidebar h2 {
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: .78rem;
  font-weight: 900;
}

.sidebar nav {
  flex-direction: column;
  flex: 1;
  padding: .5rem 0 1rem;
  display: flex;
  overflow: hidden auto;
}

.sidebar nav::-webkit-scrollbar {
  width: 0;
}

.sidebar-label {
  color: #ffffff40;
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
  padding: 1.5rem 1.25rem .5rem;
  font-size: .6rem;
  font-weight: 800;
}

.sidebar.collapsed .sidebar-label {
  display: none;
}

.sidebar nav a {
  color: var(--sidebar-text);
  transition: all var(--transition-base);
  white-space: nowrap;
  letter-spacing: .01em;
  border-radius: 8px;
  align-items: center;
  gap: .85rem;
  margin: .1rem .75rem;
  padding: .65rem 1.25rem;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  position: relative;
}

.sidebar nav a svg {
  opacity: .7;
  transition: opacity var(--transition-base);
  flex-shrink: 0;
}

.sidebar nav a:hover {
  background: var(--sidebar-hover);
  color: #ffffffe6;
}

.sidebar nav a:hover svg {
  opacity: 1;
}

.sidebar nav a.active {
  background: var(--sidebar-active);
  color: var(--sidebar-text-active);
  font-weight: 700;
}

.sidebar nav a.active svg {
  opacity: 1;
}

.sidebar nav a.active:before {
  content: "";
  background: var(--brand-accent);
  border-radius: 0 3px 3px 0;
  width: 3px;
  height: 60%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.sidebar.collapsed nav a {
  justify-content: center;
  gap: 0;
  margin: .1rem .75rem;
  padding: .65rem 0;
}

.sidebar.collapsed nav a:before, .sidebar.collapsed nav a span {
  display: none;
}

.logout-btn {
  color: #ffffff73;
  border: none;
  border-top: 1px solid var(--sidebar-border);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  background: none;
  align-items: center;
  gap: .85rem;
  padding: 1.1rem 1.5rem;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 600;
  display: flex;
}

.logout-btn:hover {
  color: #ff6b6b;
  background: #f03d3d1f;
}

.sidebar.collapsed .logout-btn {
  justify-content: center;
  padding: 1.1rem 0;
}

.sidebar.collapsed .logout-btn span {
  display: none;
}

.main-content {
  background: var(--surface-base);
  flex: 1;
  min-width: 0;
  padding-top: 1.75rem;
  overflow: hidden auto;
}

.public-container {
  background: var(--surface-base);
  min-height: 100vh;
}

.mobile-header {
  background: var(--sidebar-bg);
  color: #fff;
  z-index: 1002;
  justify-content: space-between;
  align-items: center;
  height: 58px;
  padding: 0 1rem;
  display: none;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 12px #0000002e;
}

.mobile-toggle {
  color: #fff;
  cursor: pointer;
  transition: background var(--transition-fast);
  background: none;
  border: none;
  border-radius: 6px;
  align-items: center;
  padding: .5rem;
  display: flex;
}

.mobile-toggle:hover {
  background: #ffffff1a;
}

.sidebar-overlay {
  z-index: 1000;
  -webkit-backdrop-filter: blur(4px);
  background: #0d1f3c8c;
  position: fixed;
  inset: 0;
}

.nav-chevron {
  opacity: .5;
  margin-left: auto;
}

@media (max-width: 768px) {
  .admin-layout {
    flex-direction: column;
  }

  .mobile-header {
    display: flex;
  }

  .sidebar {
    width: 256px;
    height: 100vh;
    transition: left .28s cubic-bezier(.4, 0, .2, 1);
    position: fixed;
    top: 0;
    bottom: 0;
    left: -260px;
    box-shadow: 8px 0 32px #0000004d;
  }

  .sidebar.mobile-open {
    left: 0;
  }

  .sidebar.collapsed {
    width: 256px;
    left: -260px;
  }

  .sidebar.collapsed.mobile-open {
    left: 0;
  }

  .main-content {
    padding-top: 0;
  }

  .nav-chevron {
    display: none;
  }
}

/*# sourceMappingURL=apps_web_src_11h6vcj._.css.map*/