@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Apply Inter Font Across the Entire Application */
*, body, button, input, select, textarea, .v-application {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* Base Theme Variables */
:root {
  --payparse-emerald: #10b981;
  --payparse-emerald-hover: #059669;
  --payparse-dark-bg: #0b0f0e;
  --payparse-dark-card: #121816;
  --v-primary-base: #10b981 !important;
  --v-anchor-base: #34d399 !important;
}

/* ===================================================
   1. DARK MODE (Payparse Dark Aesthetic)
   =================================================== */
body.theme--dark, 
.theme--dark.v-application {
  background-color: var(--payparse-dark-bg) !important;
  color: #e2e8f0 !important;
}

/* Header Bar */
.theme--dark header.v-app-bar,
.theme--dark.v-app-bar.primary,
.theme--dark .v-toolbar {
  background-color: var(--payparse-dark-card) !important;
  border-bottom: 1px solid rgba(16, 185, 129, 0.2) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

.theme--dark .v-toolbar__title,
.theme--dark .v-toolbar__title span,
.theme--dark header .v-icon {
  color: #ffffff !important;
}

/* Sidebar Navigation Drawer */
.theme--dark .v-navigation-drawer {
  background-color: var(--payparse-dark-bg) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.theme--dark .v-list-item--active {
  background-color: rgba(16, 185, 129, 0.12) !important;
  border-left: 3px solid var(--payparse-emerald) !important;
}

.theme--dark .v-list-item--active .v-list-item__title,
.theme--dark .v-list-item--active .v-icon {
  color: var(--payparse-emerald) !important;
}

.theme--dark .v-list-item__title,
.theme--dark .v-navigation-drawer .v-icon {
  color: #cbd5e1 !important;
  font-weight: 500 !important;
}

/* Cards & Containers */
.theme--dark .v-card,
.theme--dark .v-sheet {
  background-color: var(--payparse-dark-card) !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
  border-radius: 12px !important;
}

/* Text & Form Inputs */
.theme--dark .text--disabled,
.theme--dark .text--secondary,
.theme--dark .v-messages,
.theme--dark .v-label {
  color: #a0aec0 !important;
}

.theme--dark .v-input__slot {
  background-color: var(--payparse-dark-bg) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
}

/* ===================================================
   2. LIGHT MODE (Clean Slate Aesthetic)
   =================================================== */
body.theme--light,
.theme--light.v-application {
  background-color: #f8fafc !important;
  color: #0f172a !important;
}

/* Header Bar */
.theme--light header.v-app-bar,
.theme--light.v-app-bar.primary,
.theme--light .v-toolbar {
  background-color: #ffffff !important;
  border-bottom: 1px solid #e2e8f0 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.theme--light .v-toolbar__title,
.theme--light .v-toolbar__title span,
.theme--light header .v-icon {
  color: #0f172a !important;
  font-weight: 700 !important;
}

/* Sidebar Navigation Drawer */
.theme--light .v-navigation-drawer {
  background-color: #ffffff !important;
  border-right: 1px solid #e2e8f0 !important;
}

.theme--light .v-list-item--active {
  background-color: rgba(16, 185, 129, 0.12) !important;
  border-left: 3px solid var(--payparse-emerald) !important;
}

.theme--light .v-list-item--active .v-list-item__title,
.theme--light .v-list-item--active .v-icon {
  color: #059669 !important;
}

.theme--light .v-list-item__title,
.theme--light .v-navigation-drawer .v-icon {
  color: #334155 !important;
  font-weight: 500 !important;
}

/* Cards & Containers */
.theme--light .v-card,
.theme--light .v-sheet {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

/* Text & Form Inputs */
.theme--light .text--disabled,
.theme--light .text--secondary,
.theme--light .v-messages,
.theme--light .v-label,
.theme--light p,
.theme--light div {
  color: #475569 !important;
}

.theme--light .v-input__slot {
  background-color: #f1f5f9 !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 8px !important;
}

/* ===================================================
   3. SHARED BUTTONS & FLOATING ACTION BUTTON (+)
   =================================================== */
.v-btn.primary,
button.v-btn--contained.primary,
a.v-btn--fab.primary {
  background-color: var(--payparse-emerald) !important;
  border-color: var(--payparse-emerald) !important;
  color: #000000 !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
}

.v-btn.v-btn--fab.primary {
  border-radius: 50% !important;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4) !important;
}

.v-btn.primary:hover,
.v-btn.v-btn--fab.primary:hover {
  background-color: var(--payparse-emerald-hover) !important;
}
