:root {
  --neutral--800: #080f25;
  --neutral--400: #d1dbf9;
  --neutral--100: white;
  --accent--primary-1: #6c72ff;
  --secondary--color-4: #343b4f;
  --secondary--color-1: #101935;
  --general--shadow-01: #14142b0f;
  --secondary--color-2: #9a91fb;
  --secondary--color-3: #57c3ff;
  --secondary--color-5: #fdb52a;
  --neutral--700: #212c4d;
  --neutral--600: #37446b;
  --neutral--500: #aeb9e1;
  --neutral--200: #eaf4ff;
  --text-muted: #f8fafc;
  --system--green-300: #14ca74;
  --system--300: #ff5a65;
  --general--shadow-03: #14142b1a;
  --system--red-100: #ffeff0;
  --neutral--300: #d1dbf9;
  --general--shadow-02: #14142b14;
  --system--red-400: #dc2b2b;
  --button-shadow--color-01: #4a3aff0f;
  --button-shadow--white-01: #14142b0a;
  --button-shadow--white-02: #14142b0f;
  --button-shadow--white-03: #14142b1a;
  --button-shadow--color-3: #4a3aff14;
  --button-shadow--color-2: #4a3aff14;
  --general--shadow-04: #14142b24;
  --general--shadow-05: #14142b29;
  --general--shadow-06: #14142b3d;
  --system--blue-400: #086cd9;
  --system--blue-300: #1d88fe;
  --system--blue-200: #8fc3ff;
  --system--blue-100: #eaf4ff;
  --system--green-400: #11845b;
  --system--green-200: #7fdca4;
  --system--green-100: #def2e6;
  --system--red-200: #ffbec2;
  --system--orange-400: #d5691b;
  --system--orange-300: #ff9e2c;
  --system--orange-200: #ffd19b;
  --system--orange-100: #fff3e4;
}

/* 
   ==========================================================================
   NORMALIZE / RESET
   ========================================================================== 
*/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
  height: 100%;
}

body {
  margin: 0;
  color: var(--neutral--400);
  background-color: var(--neutral--800);
  min-height: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

a {
  background-color: transparent;
  color: var(--accent--primary-1);
  text-decoration: none;
  transition: color .3s;
}

a:active,
a:hover {
  outline: 0;
  color: var(--neutral--100);
}

b,
strong {
  font-weight: bold;
  color: var(--neutral--100);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 500;
  color: var(--neutral--100);
}

h1 {
  font-size: 28px;
  line-height: 1.571em;
}

h2 {
  font-size: 24px;
  line-height: 1.417em;
}

h3 {
  font-size: 22px;
  line-height: 1.273em;
}

h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.375em;
}

h5 {
  font-size: 14px;
  line-height: 1.429em;
}

h6 {
  font-size: 12px;
  line-height: 1.5em;
}

p {
  margin-top: 0;
  margin-bottom: 16px;
}

img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

td,
th {
  padding: 0;
}

* {
  box-sizing: border-box;
}

/* 
   ==========================================================================
   UTILITY CLASSES (WEBFLOW STYLE)
   ========================================================================== 
*/
.w-container {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.w-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.w-col {
  padding-left: 10px;
  padding-right: 10px;
}

.w-hidden {
  display: none !important;
}

.w-block {
  display: block;
}

.w-inline-block {
  display: inline-block;
  max-width: 100%;
}

.card {
  border: .6px solid var(--secondary--color-4);
  background-color: var(--secondary--color-1);
  box-shadow: 0 2px 7px 0 var(--general--shadow-01);
  border-radius: 12px;
  padding: 28px;
}

.grid-2-columns {
  display: grid;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-columns: 1fr 1fr;
}

._2-items-wrap-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.mg-bottom-32px {
  margin-bottom: 32px;
}

.mg-bottom-16px {
  margin-bottom: 16px;
}

.mg-bottom-8px {
  margin-bottom: 8px;
}

.mg-bottom-4px {
  margin-bottom: 4px;
}

.display-4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.333em;
  color: var(--neutral--100);
}

/* Buttons */
.btn-primary {
  background-color: var(--accent--primary-1);
  color: var(--neutral--100);
  text-align: center;
  border-radius: 4px;
  padding: 8px 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary {
  background-color: var(--neutral--700);
  color: var(--neutral--100);
  border-radius: 4px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gap-column-6px {
  gap: 6px;
}

/* Sidebar Base Styles matching Dashdark - Adapted for our expansion logic */
.sidebar-wrapper {
  z-index: 500;
  border-right: .6px solid var(--neutral--600);
  background-color: var(--neutral--800);
  width: 300px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
}

/* Custom UI Components */
.status-badge {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.status-badge.green {
  color: var(--system--green-300);
  background-color: rgba(20, 202, 116, 0.1);
}

.status-badge.red {
  color: var(--system--300);
  background-color: rgba(255, 90, 101, 0.1);
}

.status-badge.yellow {
  color: var(--secondary--color-5);
  background-color: rgba(253, 181, 42, 0.1);
}

.small-details-card-grid {
  display: grid;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* 
   ==========================================================================
   FONTS / ICONS
   ========================================================================== 
*/
@font-face {
  font-family: 'Mona sans';
  src: url('https://cdn.prod.website-files.com/641a0c8100e68df2708b96bf/641a0e964c53081a8b4735a9_Mona-Sans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Dashdark custom icon font';
  src: url('https://cdn.prod.website-files.com/641a0c8100e68df2708b96bf/642382acb0a52d4e620ebab0_dashdark-custom-icon-font.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Responsive Table from the content provided */
.table-main-container {
  margin-bottom: -.6px;
  padding-bottom: .6px;
  overflow: auto;
  border: .6px solid var(--neutral--600);
  border-radius: 12px;
}

table thead th {
  background: var(--neutral--700);
  color: var(--neutral--400);
  padding: 12px 18px;
  font-size: 11px;
  text-transform: uppercase;
  text-align: left;
}

table tbody td {
  padding: 16px 18px;
  border-bottom: .6px solid var(--neutral--600);
  color: var(--neutral--200);
}

/* 
   ==========================================================================
   AUTH PAGES
   ========================================================================== 
*/
.auth-page {
  background: radial-gradient(circle at top right, #1a234e, var(--neutral--800));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.auth-page::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--accent--primary-1);
  filter: blur(120px);
  opacity: 0.15;
  top: -50px;
  right: -50px;
  border-radius: 50%;
}

.auth-wrapper {
  width: 100%;
  max-width: 440px;
  z-index: 10;
  animation: authSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}


.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand strong {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: block;
}

.muted.small {
  color: var(--neutral--500);
  font-size: 13px;
  margin-top: 2px;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  color: var(--neutral--300);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

input[type="text"],
input[type="password"],
input[type="email"] {
  width: 100%;
  background: rgba(33, 44, 77, 0.5);
  border: 1.5px solid rgba(209, 219, 249, 0.1);
  border-radius: 14px;
  padding: 14px 18px;
  color: var(--neutral--100);
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input:focus {
  outline: none;
  border-color: var(--accent--primary-1);
  background: rgba(33, 44, 77, 0.8);
  box-shadow: 0 0 0 4px rgba(108, 114, 255, 0.15);
  transform: translateY(-1px);
}

.btn.primary.full {
  background: linear-gradient(135deg, var(--accent--primary-1), #5a60ff);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 20px -5px rgba(108, 114, 255, 0.4);
  margin-top: 8px;
}

.btn.primary.full:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(108, 114, 255, 0.5);
  filter: brightness(1.1);
}

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

.btn.ghost {
  background: transparent;
  border: 1.5px solid rgba(209, 219, 249, 0.15);
  color: var(--neutral--300);
  border-radius: 12px;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  width: 100%;
  display: block;
  text-align: center;
}

.btn.ghost:hover {
  background: rgba(209, 219, 249, 0.05);
  border-color: var(--neutral--300);
  color: var(--neutral--100);
}

.hint-box {
  background: linear-gradient(135deg, rgba(108, 114, 255, 0.08), rgba(108, 114, 255, 0.03));
  border: 1px solid rgba(108, 114, 255, 0.15);
  border-radius: 20px;
  padding: 24px;
  margin-top: 32px;
}

.hint-box strong {
  display: block;
  color: var(--secondary--color-3);
  font-size: 14px;
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}

.hint-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--neutral--400);
}

@keyframes authSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@media (max-width: 480px) {
  .login-card {
    padding: 32px 24px;
    border-radius: 20px;
  }
}