@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #ffffff;
  background-color: #00100d;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: #d8f4a8;
  text-decoration: none;
  transition: all 0.15s ease;
}
a:hover {
  color: #BFF363;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

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

::-webkit-scrollbar-track {
  background: #141c1a;
}

::-webkit-scrollbar-thumb {
  background: #26453e;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #5a7980;
}

::selection {
  background: rgba(190, 243, 99, 0.3333333333);
  color: #ffffff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.animate-fade-in {
  animation: fadeIn 0.35s ease both;
}

.app-wrapper {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  min-height: 100vh;
  background: #141c1a;
  border-right: 1px solid #1f2f2c;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: transform 0.3s ease;
}
.sidebar__logo {
  padding: 24px 16px;
  border-bottom: 1px solid #1f2f2c;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar__logo .logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #BFF363, #5c6d3e);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(190, 243, 99, 0.3333333333);
  flex-shrink: 0;
}
.sidebar__logo .logo-text {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
}
.sidebar__nav {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}
.sidebar__section-label {
  font-size: 11px;
  font-weight: 600;
  color: #5a7980;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  margin-top: 8px;
}
.sidebar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  margin: 2px 8px;
  border-radius: 8px;
  color: #a1abad;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}
.sidebar__item .nav-icon {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar__item:hover {
  background: #12221e;
  color: #ffffff;
}
.sidebar__item:hover .nav-icon {
  opacity: 1;
}
.sidebar__item.active {
  background: rgba(191, 243, 99, 0.12);
  color: #d8f4a8;
  font-weight: 600;
}
.sidebar__item.active .nav-icon {
  opacity: 1;
}
.sidebar__item.active::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: #BFF363;
  border-radius: 0 8px 8px 0;
}
.sidebar__item.active {
  position: relative;
}
.sidebar__footer {
  padding: 16px;
  border-top: 1px solid #1f2f2c;
}
.sidebar__footer .user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.15s ease;
  cursor: pointer;
}
.sidebar__footer .user-info:hover {
  background: #12221e;
}
.sidebar__footer .user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #BFF363, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.sidebar__footer .user-name {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar__footer .user-role {
  font-size: 11px;
  color: #5a7980;
}

.main-content {
  flex: 1;
  margin-left: 240px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-header {
  height: 64px;
  background: #141c1a;
  border-bottom: 1px solid #1f2f2c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}
.top-header__left {
  display: flex;
  flex-direction: column;
}
.top-header__title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
}
.top-header__subtitle {
  font-size: 12px;
  color: #5a7980;
}
.top-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-content {
  padding: 32px;
  flex: 1;
  animation: fadeIn 0.3s ease both;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.dashboard-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.dashboard-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.dashboard-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.sidebar-toggle {
  display: none;
  background: none;
  border: none;
  color: #a1abad;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.15s ease;
}
.sidebar-toggle:hover {
  background: #12221e;
  color: #ffffff;
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .main-content {
    margin-left: 0;
  }
  .sidebar-toggle {
    display: flex;
  }
  .page-content {
    padding: 16px;
  }
  .top-header {
    padding: 0 16px;
  }
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #141c1a;
  border: 1px solid #1f2f2c;
  border-radius: 12px;
  transition: all 0.15s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.card--hover:hover {
  border-color: #5c6d3e;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}
.card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
}
.card__body {
  padding: 32px;
  flex: 1;
}
.card__title {
  font-size: 12px;
  font-weight: 600;
  color: #a1abad;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.card:not(:has(.table-wrapper)) .card__header {
  border-bottom: 1px solid #1f2f2c;
}

.btn-pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #5a7980;
  padding: 0;
}

.pw-strength-track {
  height: 4px;
  border-radius: 4px;
  background: #1f2f2c;
  overflow: hidden;
}

.pw-strength-fill {
  height: 100%;
  transition: width 0.3s, background 0.3s;
  border-radius: 4px;
}

.stat-card {
  background: #141c1a;
  border: 1px solid #1f2f2c;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #BFF363, transparent);
  opacity: 0;
  transition: all 0.25s ease;
}
.stat-card:hover {
  border-color: #26453e;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}
.stat-card:hover::before {
  opacity: 1;
}
.stat-card .stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.stat-card .stat-icon--purple {
  background: rgba(108, 99, 255, 0.12);
}
.stat-card .stat-icon--blue {
  background: rgba(59, 130, 246, 0.12);
}
.stat-card .stat-icon--orange {
  background: rgba(245, 158, 11, 0.12);
}
.stat-card .stat-icon--red {
  background: rgba(239, 68, 68, 0.12);
}
.stat-card .stat-icon--green {
  background: rgba(34, 197, 94, 0.12);
}
.stat-card .stat-label {
  font-size: 12px;
  color: #5a7980;
  font-weight: 500;
}
.stat-card .stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.stat-card .stat-delta {
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.stat-card .stat-delta.positive {
  color: #5be851;
}
.stat-card .stat-delta.negative {
  color: #ef4444;
}
.stat-card .stat-delta.neutral {
  color: #5a7980;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  outline: none;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--primary {
  background: rgba(190, 243, 99, 0.1647058824);
  color: white;
  border-color: rgba(191, 243, 99, 0.3);
}
.btn--primary:hover:not(:disabled) {
  background: #5c6d3e;
  color: white;
  border-color: #5c6d3e;
}
.btn--secondary {
  background: #12221e;
  color: #ffffff;
  border-color: #1f2f2c;
}
.btn--secondary:hover:not(:disabled) {
  background: #1a2d29;
  border-color: #26453e;
  color: #ffffff;
}
.btn--danger {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}
.btn--danger:hover:not(:disabled) {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
}
.btn--ghost {
  background: transparent;
  color: #a1abad;
  border-color: transparent;
}
.btn--ghost:hover:not(:disabled) {
  background: #12221e;
  color: #ffffff;
}
.btn-text {
  background: transparent;
  color: #d8f4a8;
  border-color: transparent;
  padding: 0;
}
.btn-text:hover:not(:disabled) {
  color: #BFF363;
  text-decoration: underline;
}
.btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: #1f2f2c;
}
.btn--outline:hover:not(:disabled) {
  background: #12221e;
  border-color: #5c6d3e;
}
.btn--sm {
  padding: 6px 8px;
  font-size: 11px;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 14px;
  border-radius: 12px;
}
.btn--full {
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: currentColor;
  display: none;
}
.badge--dot::before {
  display: block;
}
.badge--green {
  background: rgba(34, 197, 94, 0.12);
  color: #5be851;
}
.badge--yellow {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}
.badge--red {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}
.badge--blue {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}
.badge--gray {
  background: #1a2d29;
  color: #5a7980;
}
.badge--purple {
  background: rgba(191, 243, 99, 0.12);
  color: #d8f4a8;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid #1f2f2c;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.table thead tr {
  background: #12221e;
}
.table thead th {
  padding: 8px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: #5a7980;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #1f2f2c;
  white-space: nowrap;
}
.table tbody tr {
  border-bottom: 1px solid #1f2f2c;
  transition: all 0.15s ease;
}
.table tbody tr:last-child {
  border-bottom: none;
}
.table tbody tr:hover {
  background: rgba(18, 34, 30, 0.5);
}
.table tbody td {
  padding: 12px 16px;
  color: #a1abad;
  vertical-align: middle;
}

.alert {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  border-radius: 8px;
  font-size: 12px;
  margin-bottom: 16px;
}
.alert svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.alert--success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(91, 232, 81, 0.2);
  color: #5be851;
}
.alert--warning {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}
.alert--danger {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}
.alert--info {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.score-ring {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.score-ring svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}
.score-ring .score-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  color: #ffffff;
}
.score-ring .score-text span {
  font-size: 11px;
  font-weight: 500;
  color: #5a7980;
}

.empty-state {
  text-align: center;
  padding: 48px 32px;
  color: #5a7980;
}
.empty-state .empty-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.empty-state p {
  font-size: 12px;
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.7;
}
.empty-state p:first-of-type {
  color: #a1abad;
  font-weight: 500;
}

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 50%;
  transform: translateX(50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  background: #1a2d29;
  border: 1px solid #26453e;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  font-size: 12px;
  font-weight: 500;
  pointer-events: all;
  animation: fadeIn 0.3s ease;
  max-width: 360px;
}
.toast--success {
  border-left: 3px solid #5be851;
}
.toast--error {
  border-left: 3px solid #ef4444;
}
.toast--info {
  border-left: 3px solid #3b82f6;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.modal-overlay--open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #141c1a;
  border: 1px solid #1f2f2c;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  transform: translateY(20px);
  transition: transform 0.25s ease;
}
.modal-overlay--open .modal {
  transform: translateY(0);
}
.modal__header {
  padding: 24px;
  border-bottom: 1px solid #1f2f2c;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal__header h3 {
  font-size: 14px;
  font-weight: 700;
}
.modal__body {
  padding: 24px;
}
.modal__footer {
  padding: 16px 24px;
  border-top: 1px solid #1f2f2c;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.risk-low {
  color: #5be851;
}

.risk-medium {
  color: #f59e0b;
}

.risk-high {
  color: #ef4444;
}

.risk-critical {
  color: #c53030;
}

.score-high {
  color: #5be851;
}

.score-low {
  color: #ef4444;
}

.alert-banner {
  padding: 12px 20px;
  font-weight: 500;
  position: relative;
  z-index: 100;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.alert-banner--warning {
  background: #f59e0b;
}
.alert-banner--danger {
  background: #ef4444;
  text-align: center;
  justify-content: center;
}
.alert-banner .btn-banner {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}
.alert-banner .btn-banner:hover {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}

.tr-danger-subtle {
  background-color: rgba(239, 68, 68, 0.05);
}

.tr-warning-subtle {
  background-color: rgba(245, 158, 11, 0.05);
}

.tr-purple-subtle {
  background-color: rgba(168, 85, 247, 0.05);
}

.user-avatar-lg {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c63ff, #5a52d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: #a1abad;
}
.form-label .required {
  color: #ef4444;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 10px 16px;
  background: #12221e;
  border: 1px solid #1f2f2c;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  transition: all 0.15s ease;
  outline: none;
}
.form-control::placeholder {
  color: #5a7980;
}
.form-control:focus {
  border-color: #BFF363;
  box-shadow: 0 0 0 3px rgba(190, 243, 99, 0.3333333333);
  background: #1a2d29;
}
.form-control:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.form-control--error {
  border-color: #ef4444;
}
.form-control--error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-hint {
  font-size: 11px;
  color: #5a7980;
}

.form-error {
  font-size: 11px;
  color: #ef4444;
  display: flex;
  align-items: center;
  gap: 4px;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00100d;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.auth-page::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(191, 243, 99, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.auth-card {
  background: #141c1a;
  border: 1px solid #1f2f2c;
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
}
.auth-card .auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.auth-card .auth-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #BFF363, #5c6d3e);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 20px rgba(190, 243, 99, 0.3333333333);
}
.auth-card .auth-logo .logo-name {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.auth-card h1 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
}
.auth-card .auth-subtitle {
  font-size: 12px;
  color: #5a7980;
  text-align: center;
  margin-bottom: 32px;
}
.auth-card .auth-link {
  text-align: center;
  font-size: 12px;
  color: #5a7980;
  margin-top: 24px;
}
.auth-card .auth-link a {
  color: #d8f4a8;
  font-weight: 600;
}
.auth-card .auth-link a:hover {
  color: #BFF363;
}

.search-input-wrapper {
  position: relative;
}
.search-input-wrapper .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #5a7980;
  pointer-events: none;
}
.search-input-wrapper input {
  padding-left: 36px;
}

.form-help {
  font-size: 12px;
  color: #5a7980;
  margin-top: 4px;
}

.text-muted {
  color: #5a7980 !important;
}

.text-secondary {
  color: #a1abad !important;
}

.text-primary {
  color: #ffffff !important;
}

.text-success {
  color: #5be851 !important;
}

.text-danger {
  color: #ef4444 !important;
}

.text-warning {
  color: #f59e0b !important;
}

.text-accent {
  color: #d8f4a8 !important;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.text-xs {
  font-size: 11px;
}

.text-sm {
  font-size: 12px;
}

.text-md {
  font-size: 15px;
}

.text-lg {
  font-size: 18px;
}

.text-xl {
  font-size: 22px;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-block {
  display: block;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-sm {
  gap: 8px;
}

.gap-md {
  gap: 16px;
}

.gap-lg {
  gap: 24px;
}

.mt-sm {
  margin-top: 8px;
}

.mt-md {
  margin-top: 16px;
}

.mt-lg {
  margin-top: 24px;
}

.mt-xl {
  margin-top: 32px;
}

.mb-sm {
  margin-bottom: 8px;
}

.mb-md {
  margin-bottom: 16px;
}

.mb-lg {
  margin-bottom: 24px;
}

.mb-xl {
  margin-bottom: 32px;
}

.w-full {
  width: 100%;
}

.text-center {
  text-align: center;
}

.divider {
  border: none;
  border-top: 1px solid #1f2f2c;
  margin: 24px 0;
}

.section-title {
  font-size: 12px;
  font-weight: 600;
  color: #5a7980;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.text-11 {
  font-size: 11px;
}

.text-12 {
  font-size: 12px;
}

.text-13 {
  font-size: 13px;
}

.text-14 {
  font-size: 14px;
}

.text-16 {
  font-size: 16px;
}

.text-18 {
  font-size: 18px;
}

.text-32 {
  font-size: 32px;
  line-height: 1.2;
}

.font-mono {
  font-family: monospace;
}

.italic {
  font-style: italic;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.flex-col {
  flex-direction: column;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.gap-xs {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.m-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.p-0 {
  padding: 0;
}

.p-sm {
  padding: 8px;
}

.p-md {
  padding: 16px;
}

.py-sm {
  padding-top: 8px;
  padding-bottom: 8px;
}

.px-sm {
  padding-left: 8px;
  padding-right: 8px;
}

.py-md {
  padding-top: 16px;
  padding-bottom: 16px;
}

.px-md {
  padding-left: 16px;
  padding-right: 16px;
}

.rounded-full {
  border-radius: 50%;
}

.shrink-0 {
  flex-shrink: 0;
}

.mt-xs {
  margin-top: 4px;
}

.mb-xs {
  margin-bottom: 4px;
}

.pb-sm {
  padding-bottom: 8px;
}

.py-xl {
  padding-top: 32px;
  padding-bottom: 32px;
}

.rounded-full {
  border-radius: 50%;
}

.shrink-0 {
  flex-shrink: 0;
}

.w-200 {
  width: 200px;
}

.w-350 {
  width: 350px;
}

.max-w-300 {
  max-width: 300px;
}

.max-w-600 {
  max-width: 600px;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.underline {
  text-decoration: underline;
}

.no-underline {
  text-decoration: none;
}

.text-inherit {
  color: inherit;
}

.text-20 {
  font-size: 20px;
}

.align-middle {
  vertical-align: middle;
}

.bg-base {
  background: #00100d;
}

.bg-subtle {
  background: #12221e;
}

.border-base {
  border: 1px solid #1f2f2c;
}

.rounded-md {
  border-radius: 8px;
}

.border-b {
  border-bottom: 1px solid #1f2f2c;
}

.card-highlight {
  background: rgba(108, 99, 255, 0.05);
  border-color: rgba(108, 99, 255, 0.2);
}

.text-ellipsis-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.mr-xs {
  margin-right: 4px;
}

.mr-sm {
  margin-right: 8px;
}

.d-none {
  display: none;
}

.d-inline {
  display: inline;
}

.relative {
  position: relative;
}

.flex-1 {
  flex: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

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