<<<<<<< HEAD
/* Material Design 3 Variables */
:root {
  --md-sys-color-primary: #6750A4;
  --md-sys-color-on-primary: #FFFFFF;
  --md-sys-color-primary-container: #EADDFF;
  --md-sys-color-on-primary-container: #21005D;
  --md-sys-color-secondary: #625B71;
  --md-sys-color-on-secondary: #FFFFFF;
  --md-sys-color-secondary-container: #E8DEF8;
  --md-sys-color-on-secondary-container: #1D192B;
  --md-sys-color-tertiary: #7D5260;
  --md-sys-color-on-tertiary: #FFFFFF;
  --md-sys-color-tertiary-container: #FFD8E4;
  --md-sys-color-on-tertiary-container: #31111D;
  --md-sys-color-error: #BA1A1A;
  --md-sys-color-on-error: #FFFFFF;
  --md-sys-color-error-container: #FFDAD6;
  --md-sys-color-on-error-container: #410002;
  --md-sys-color-background: #FFFBFE;
  --md-sys-color-on-background: #1C1B1F;
  --md-sys-color-surface: #FFFBFE;
  --md-sys-color-on-surface: #1C1B1F;
  --md-sys-color-surface-variant: #E7E0EC;
  --md-sys-color-on-surface-variant: #49454F;
  --md-sys-color-outline: #79747E;
  --md-sys-color-outline-variant: #CAC4D0;
  --md-sys-color-shadow: #000000;
  --md-sys-color-scrim: #000000;
  --md-sys-color-inverse-surface: #313033;
  --md-sys-color-inverse-on-surface: #F4EFF4;
  --md-sys-color-inverse-primary: #D0BCFF;
  --md-sys-color-surface-dim: #DDD8DD;
  --md-sys-color-surface-bright: #FFFBFE;
  --md-sys-color-surface-container-lowest: #FFFFFF;
  --md-sys-color-surface-container-low: #F7F2F7;
  --md-sys-color-surface-container: #F1ECF1;
  --md-sys-color-surface-container-high: #ECE6EB;
  --md-sys-color-surface-container-highest: #E6E0E5;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--md-sys-color-background);
  color: var(--md-sys-color-on-background);
  line-height: 1.5;
}

/* App Shell Layout */
.app-shell {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

/* Top App Bar */
.top-app-bar {
  background-color: var(--md-sys-color-surface-container);
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
  z-index: 1000;
}

.top-app-bar-content {
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.app-title {
  font-size: 22px;
  font-weight: 400;
  margin-left: 16px;
  color: var(--md-sys-color-on-surface);
}

.spacer {
  flex: 1;
}

/* Navigation Drawer */
.navigation-drawer {
  position: fixed;
  left: -280px;
  top: 64px;
  width: 280px;
  height: calc(100vh - 64px);
  background-color: var(--md-sys-color-surface-container-low);
  border-right: 1px solid var(--md-sys-color-outline-variant);
  transition: left 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.navigation-drawer.open {
  left: 0;
}

.drawer-content {
  padding: 16px 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  margin-bottom: 16px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  margin-right: 16px;
  background-color: var(--md-sys-color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}

.brand-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface);
}

.navigation-items {
  padding: 0 12px;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin: 4px 0;
  border-radius: 28px;
  text-decoration: none;
  color: var(--md-sys-color-on-surface);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.nav-item:hover {
  background-color: var(--md-sys-color-surface-container-high);
}

.nav-item.active {
  background-color: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
}

.nav-item md-icon {
  margin-right: 12px;
}

.divider {
  height: 1px;
  background-color: var(--md-sys-color-outline-variant);
  margin: 16px 24px;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  transition: margin-left 0.3s ease;
}

.main-content.drawer-open {
  margin-left: 280px;
}

/* Pages */
.page {
  display: none;
}

.page.active {
  display: block;
}

.page-header {
  margin-bottom: 32px;
}

.page-title {
  font-size: 32px;
  font-weight: 400;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 8px;
}

.page-subtitle {
  font-size: 16px;
  color: var(--md-sys-color-on-surface-variant);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  padding: 24px;
  background-color: var(--md-sys-color-surface-container-low);
}

.stat-content {
  display: flex;
  align-items: center;
}

.stat-icon {
  font-size: 48px;
  color: var(--md-sys-color-primary);
  margin-right: 16px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 32px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--md-sys-color-on-surface-variant);
  margin-top: 4px;
}

/* Quick Actions */
.quick-actions {
  margin-bottom: 32px;
}

.quick-actions h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 16px;
}

.actions-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.action-button {
  min-width: 160px;
}

/* Recent Activity */
.recent-activity h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 16px;
}

/* Profile Card */
.profile-card {
  padding: 24px;
  margin-bottom: 24px;
  background-color: var(--md-sys-color-surface-container-low);
}

.profile-content {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.profile-avatar {
  margin-right: 24px;
}

.profile-avatar md-icon {
  font-size: 80px;
  color: var(--md-sys-color-primary);
}

.profile-info h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 8px;
}

.profile-info p {
  font-size: 16px;
  color: var(--md-sys-color-on-surface-variant);
  margin-bottom: 16px;
}

.profile-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.icon-button {
  background: none;
  border: none;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.icon-button:hover {
  background-color: var(--md-sys-color-surface-container-high);
}

.action-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid var(--md-sys-color-outline);
  border-radius: 20px;
  background: var(--md-sys-color-surface);
  color: var(--md-sys-color-on-surface);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
  min-width: 160px;
  justify-content: center;
}

.action-button:hover {
  background-color: var(--md-sys-color-surface-container-high);
}

.action-button.primary {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
  border-color: var(--md-sys-color-primary);
}

.action-button.primary:hover {
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
}

/* Cards */
.stat-card {
  padding: 24px;
  background-color: var(--md-sys-color-surface-container-low);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.profile-card {
  padding: 24px;
  margin-bottom: 24px;
  background-color: var(--md-sys-color-surface-container-low);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Activity List */
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--md-sys-color-surface-container-low);
  border-radius: 8px;
}

.activity-content {
  flex: 1;
}

.activity-title {
  font-weight: 500;
  color: var(--md-sys-color-on-surface);
}

.activity-time {
  font-size: 14px;
  color: var(--md-sys-color-on-surface-variant);
  margin-top: 4px;
}

/* Profile Badges */
.profile-badges {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.badge {
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
}

.badge.verified {
  background-color: var(--md-sys-color-tertiary-container);
  color: var(--md-sys-color-on-tertiary-container);
}

.badge.premium {
  background-color: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--md-sys-color-surface);
  border-radius: 12px;
  padding: 0;
  max-width: 400px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 0 24px;
}

.modal-header h2 {
  margin: 0;
  color: var(--md-sys-color-on-surface);
}

.close-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--md-sys-color-on-surface-variant);
  padding: 4px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-button:hover {
  background-color: var(--md-sys-color-surface-container-high);
}

/* Form Styles */
.login-form {
  padding: 24px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface);
}

.form-field input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--md-sys-color-outline);
  border-radius: 8px;
  background-color: var(--md-sys-color-surface);
  color: var(--md-sys-color-on-surface);
  font-size: 16px;
  transition: border-color 0.2s ease;
}

.form-field input:focus {
  outline: none;
  border-color: var(--md-sys-color-primary);
}

.form-actions {
  margin: 16px 0;
  text-align: center;
}

.form-actions button {
  background: none;
  border: none;
  color: var(--md-sys-color-primary);
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

.modal-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.modal-buttons button:not(.primary) {
  background-color: transparent;
  color: var(--md-sys-color-primary);
}

.modal-buttons button:not(.primary):hover {
  background-color: var(--md-sys-color-surface-container-high);
}

.modal-buttons button.primary {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
}

.modal-buttons button.primary:hover {
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navigation-drawer {
    width: 100%;
    left: -100%;
  }
  
  .navigation-drawer.open {
    left: 0;
  }
  
  .main-content.drawer-open {
    margin-left: 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .actions-grid {
    flex-direction: column;
  }
  
  .action-button {
    width: 100%;
  }
  
  .profile-content {
    flex-direction: column;
    text-align: center;
  }
  
  .profile-avatar {
    margin-right: 0;
    margin-bottom: 16px;
  }
  
  .profile-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 16px;
  }
  
  .page-title {
    font-size: 28px;
  }
  
  .stat-card {
    padding: 16px;
  }
  
  .stat-icon {
    font-size: 40px;
  }
  
  .stat-number {
    font-size: 28px;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --md-sys-color-primary: #D0BCFF;
    --md-sys-color-on-primary: #381E72;
    --md-sys-color-primary-container: #4F378B;
    --md-sys-color-on-primary-container: #EADDFF;
    --md-sys-color-secondary: #CCC2DC;
    --md-sys-color-on-secondary: #332D41;
    --md-sys-color-secondary-container: #4A4458;
    --md-sys-color-on-secondary-container: #E8DEF8;
    --md-sys-color-tertiary: #EFB8C8;
    --md-sys-color-on-tertiary: #492532;
    --md-sys-color-tertiary-container: #633B48;
    --md-sys-color-on-tertiary-container: #FFD8E4;
    --md-sys-color-error: #FFB4AB;
    --md-sys-color-on-error: #690005;
    --md-sys-color-error-container: #93000A;
    --md-sys-color-on-error-container: #FFDAD6;
    --md-sys-color-background: #10090D;
    --md-sys-color-on-background: #E6E0E5;
    --md-sys-color-surface: #10090D;
    --md-sys-color-on-surface: #E6E0E5;
    --md-sys-color-surface-variant: #49454F;
    --md-sys-color-on-surface-variant: #CAC4D0;
    --md-sys-color-outline: #938F99;
    --md-sys-color-outline-variant: #49454F;
    --md-sys-color-shadow: #000000;
    --md-sys-color-scrim: #000000;
    --md-sys-color-inverse-surface: #E6E0E5;
    --md-sys-color-inverse-on-surface: #313033;
    --md-sys-color-inverse-primary: #6750A4;
    --md-sys-color-surface-dim: #10090D;
    --md-sys-color-surface-bright: #362F33;
    --md-sys-color-surface-container-lowest: #0B0408;
    --md-sys-color-surface-container-low: #1C1B1F;
    --md-sys-color-surface-container: #201A1E;
    --md-sys-color-surface-container-high: #2B2529;
    --md-sys-color-surface-container-highest: #362F33;
  }
=======
/* Material Design 3 Variables */
:root {
  --md-sys-color-primary: #6750A4;
  --md-sys-color-on-primary: #FFFFFF;
  --md-sys-color-primary-container: #EADDFF;
  --md-sys-color-on-primary-container: #21005D;
  --md-sys-color-secondary: #625B71;
  --md-sys-color-on-secondary: #FFFFFF;
  --md-sys-color-secondary-container: #E8DEF8;
  --md-sys-color-on-secondary-container: #1D192B;
  --md-sys-color-tertiary: #7D5260;
  --md-sys-color-on-tertiary: #FFFFFF;
  --md-sys-color-tertiary-container: #FFD8E4;
  --md-sys-color-on-tertiary-container: #31111D;
  --md-sys-color-error: #BA1A1A;
  --md-sys-color-on-error: #FFFFFF;
  --md-sys-color-error-container: #FFDAD6;
  --md-sys-color-on-error-container: #410002;
  --md-sys-color-background: #FFFBFE;
  --md-sys-color-on-background: #1C1B1F;
  --md-sys-color-surface: #FFFBFE;
  --md-sys-color-on-surface: #1C1B1F;
  --md-sys-color-surface-variant: #E7E0EC;
  --md-sys-color-on-surface-variant: #49454F;
  --md-sys-color-outline: #79747E;
  --md-sys-color-outline-variant: #CAC4D0;
  --md-sys-color-shadow: #000000;
  --md-sys-color-scrim: #000000;
  --md-sys-color-inverse-surface: #313033;
  --md-sys-color-inverse-on-surface: #F4EFF4;
  --md-sys-color-inverse-primary: #D0BCFF;
  --md-sys-color-surface-dim: #DDD8DD;
  --md-sys-color-surface-bright: #FFFBFE;
  --md-sys-color-surface-container-lowest: #FFFFFF;
  --md-sys-color-surface-container-low: #F7F2F7;
  --md-sys-color-surface-container: #F1ECF1;
  --md-sys-color-surface-container-high: #ECE6EB;
  --md-sys-color-surface-container-highest: #E6E0E5;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--md-sys-color-background);
  color: var(--md-sys-color-on-background);
  line-height: 1.5;
}

/* App Shell Layout */
.app-shell {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

/* Top App Bar */
.top-app-bar {
  background-color: var(--md-sys-color-surface-container);
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
  z-index: 1000;
}

.top-app-bar-content {
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.app-title {
  font-size: 22px;
  font-weight: 400;
  margin-left: 16px;
  color: var(--md-sys-color-on-surface);
}

.spacer {
  flex: 1;
}

/* Navigation Drawer */
.navigation-drawer {
  position: fixed;
  left: -280px;
  top: 64px;
  width: 280px;
  height: calc(100vh - 64px);
  background-color: var(--md-sys-color-surface-container-low);
  border-right: 1px solid var(--md-sys-color-outline-variant);
  transition: left 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.navigation-drawer.open {
  left: 0;
}

.drawer-content {
  padding: 16px 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  margin-bottom: 16px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  margin-right: 16px;
}

.brand-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface);
}

.navigation-items {
  padding: 0 12px;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin: 4px 0;
  border-radius: 28px;
  text-decoration: none;
  color: var(--md-sys-color-on-surface);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.nav-item:hover {
  background-color: var(--md-sys-color-surface-container-high);
}

.nav-item.active {
  background-color: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
}

.nav-item md-icon {
  margin-right: 12px;
}

.divider {
  height: 1px;
  background-color: var(--md-sys-color-outline-variant);
  margin: 16px 24px;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  transition: margin-left 0.3s ease;
}

.main-content.drawer-open {
  margin-left: 280px;
}

/* Pages */
.page {
  display: none;
}

.page.active {
  display: block;
}

.page-header {
  margin-bottom: 32px;
}

.page-title {
  font-size: 32px;
  font-weight: 400;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 8px;
}

.page-subtitle {
  font-size: 16px;
  color: var(--md-sys-color-on-surface-variant);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  padding: 24px;
  background-color: var(--md-sys-color-surface-container-low);
}

.stat-content {
  display: flex;
  align-items: center;
}

.stat-icon {
  font-size: 48px;
  color: var(--md-sys-color-primary);
  margin-right: 16px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 32px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--md-sys-color-on-surface-variant);
  margin-top: 4px;
}

/* Quick Actions */
.quick-actions {
  margin-bottom: 32px;
}

.quick-actions h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 16px;
}

.actions-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.action-button {
  min-width: 160px;
}

/* Recent Activity */
.recent-activity h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 16px;
}

/* Profile Card */
.profile-card {
  padding: 24px;
  margin-bottom: 24px;
  background-color: var(--md-sys-color-surface-container-low);
}

.profile-content {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.profile-avatar {
  margin-right: 24px;
}

.profile-avatar md-icon {
  font-size: 80px;
  color: var(--md-sys-color-primary);
}

.profile-info h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 8px;
}

.profile-info p {
  font-size: 16px;
  color: var(--md-sys-color-on-surface-variant);
  margin-bottom: 16px;
}

.profile-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Login Form */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
  min-width: 300px;
}

.form-actions {
  margin-top: 8px;
}

.form-actions md-text-button {
  --md-text-button-label-text-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navigation-drawer {
    width: 100%;
    left: -100%;
  }
  
  .navigation-drawer.open {
    left: 0;
  }
  
  .main-content.drawer-open {
    margin-left: 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .actions-grid {
    flex-direction: column;
  }
  
  .action-button {
    width: 100%;
  }
  
  .profile-content {
    flex-direction: column;
    text-align: center;
  }
  
  .profile-avatar {
    margin-right: 0;
    margin-bottom: 16px;
  }
  
  .profile-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 16px;
  }
  
  .page-title {
    font-size: 28px;
  }
  
  .stat-card {
    padding: 16px;
  }
  
  .stat-icon {
    font-size: 40px;
  }
  
  .stat-number {
    font-size: 28px;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --md-sys-color-primary: #D0BCFF;
    --md-sys-color-on-primary: #381E72;
    --md-sys-color-primary-container: #4F378B;
    --md-sys-color-on-primary-container: #EADDFF;
    --md-sys-color-secondary: #CCC2DC;
    --md-sys-color-on-secondary: #332D41;
    --md-sys-color-secondary-container: #4A4458;
    --md-sys-color-on-secondary-container: #E8DEF8;
    --md-sys-color-tertiary: #EFB8C8;
    --md-sys-color-on-tertiary: #492532;
    --md-sys-color-tertiary-container: #633B48;
    --md-sys-color-on-tertiary-container: #FFD8E4;
    --md-sys-color-error: #FFB4AB;
    --md-sys-color-on-error: #690005;
    --md-sys-color-error-container: #93000A;
    --md-sys-color-on-error-container: #FFDAD6;
    --md-sys-color-background: #10090D;
    --md-sys-color-on-background: #E6E0E5;
    --md-sys-color-surface: #10090D;
    --md-sys-color-on-surface: #E6E0E5;
    --md-sys-color-surface-variant: #49454F;
    --md-sys-color-on-surface-variant: #CAC4D0;
    --md-sys-color-outline: #938F99;
    --md-sys-color-outline-variant: #49454F;
    --md-sys-color-shadow: #000000;
    --md-sys-color-scrim: #000000;
    --md-sys-color-inverse-surface: #E6E0E5;
    --md-sys-color-inverse-on-surface: #313033;
    --md-sys-color-inverse-primary: #6750A4;
    --md-sys-color-surface-dim: #10090D;
    --md-sys-color-surface-bright: #362F33;
    --md-sys-color-surface-container-lowest: #0B0408;
    --md-sys-color-surface-container-low: #1C1B1F;
    --md-sys-color-surface-container: #201A1E;
    --md-sys-color-surface-container-high: #2B2529;
    --md-sys-color-surface-container-highest: #362F33;
  }
>>>>>>> 17f43ccf653046eb49929fb7b5a9df8f6b69710c
}