/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
/* Color específico para headers en modo oscuro */
[data-theme='dark'] {
  --color-header-dark: #fafafa;
  
}
/* Reglas globales para tabs en modo oscuro */
[data-theme='dark'] .tab {
  color: #fff !important;
}
[data-theme='dark'] .tabActive {
  color: #fff !important;
}
/* ============================================
   GLOBAL STYLES - VMV Claims
   ============================================ */

/* === CSS VARIABLES === */
:root {
  /* Colores Corporativos - Tema Claro (Original) */
  --color-primary: #c9a959;        /* Dorado corporativo sobrio */
  --color-primary-hover: #b8941f;  /* Dorado oscuro */
  --color-primary-light: #fef3c7;  /* Dorado muy claro */
  --color-primary-dark: #9a7810;   /* Dorado muy oscuro */
  
  --color-accent: #c9a959;         /* Dorado sobrio (sin naranja) */
  --color-accent-hover: #b8941f;   /* Dorado oscuro */
  
  --color-background: #e7e9eeb0;   /* Gris muy claro (casi blanco) */
  --color-surface: #ffffff;        /* Blanco para cards */
  --color-surface-elevated: #ffffff;
  --color-sidebar: #1e293b;        /* Azul oscuro */
  --color-input-bg: #f1f5f9;       /* Gris claro para inputs */
  
  --color-text: #0f172a;           /* Negro azulado */
  --color-text-secondary: #475569; /* Gris medio */
  --color-text-tertiary: #64748b;  /* Gris claro */
  --color-text-on-dark: #ffffff;   /* Texto sobre fondos oscuros - Blanco puro */
  
  --color-navy-dark: #0f172a;      /* Azul marino muy oscuro */
  --color-navy-medium: #1e293b;    /* Azul marino medio */
  --color-navy-light: #334155;     /* Azul marino claro */
  
  --color-border: #e2e8f0;         /* Borde claro */
  --color-border-focus: #c9a959;   /* Borde dorado al focus */
  
  --color-hover: rgba(255, 255, 255, 0.05);
  --color-active: rgba(201, 169, 89, 0.15);
  
  --color-success: #10b981;
  --color-error: #ef4444;
  --color-warning: #f59e0b;
  --color-info: #3b82f6;
  
  /* Sombras corporativas (sutiles) */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 2px 4px 0 rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 4px 8px 0 rgba(15, 23, 42, 0.08);
  
  /* Espaciado */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  
  /* Bordes corporativos (sutiles) */
  --radius: 4px;
  --radius-lg: 6px;
  
  /* Transiciones corporativas (suaves) */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 700ms ease;
  
  /* Tipografía */
  --font-family: var(--font-inter), -apple-system, BlinkMacSystemFont, 'Segoe UI', 
                 Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  
  /* Anchos máximos */
  --max-width-sm: 640px;
  --max-width-md: 768px;
  --max-width-lg: 900px;
  --max-width-xl: 1280px;
}

/* === Tema Oscuro === */
[data-theme='dark'] {
  --color-background: #12192e;     /* Negro azulado muy oscuro */
  --color-surface: #0f172a;        /* Azul marino muy oscuro */
  --color-surface-elevated: #0f172a;
  --color-sidebar: #000000;        /* Negro puro */
  --color-input-bg: #1e293b;       /* Azul marino oscuro */
  
  --color-text: #f8fafc;           /* Blanco casi puro */
  --color-text-secondary: #cbd5e1; /* Gris claro */
  --color-text-tertiary: #94a3b8;  /* Gris medio */

  /* muted foreground used by some components; ensure it is readable in dark */
  --color-muted-foreground: #cbd5e1;

  /* fallback for components that don't use variables: force readable text color across the app in dark mode */
}

/* Force high-contrast text for any element when dark theme is active.
   This is intentionally global to override hard-coded dark fallbacks in component CSS.
   Uses !important to ensure contrast; narrow and explicit so it only applies in dark mode. */
 

/* === RESET & BASE === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-background);
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: background-color var(--transition-normal), 
              color var(--transition-normal);
}

body * {
  transition: background-color var(--transition-normal), 
              color var(--transition-normal), 
              border-color var(--transition-normal);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
}

h2 {
  font-size: var(--font-size-2xl);
}

h3 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-secondary);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

a:hover {
  color: var(--color-primary-dark);
}

/* === BUTTONS === */
button {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition-normal);
}

.button-primary {
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: white;
  font-weight: 500;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.01em;
}

.button-primary:hover {
  background-color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.button-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.button-secondary {
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: var(--color-text);
  font-weight: 500;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.button-secondary:hover {
  background-color: var(--color-hover);
  border-color: var(--color-primary);
}

/* === INPUTS === */
input, textarea, select {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: var(--color-input-bg);
  color: var(--color-text);
  width: 100%;
  transition: all var(--transition-normal);
  font-weight: 400;
}

input:hover, textarea:hover, select:hover {
  border-color: var(--color-text-secondary);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-border-focus);
  box-shadow: 0 0 0 2px rgba(201, 169, 89, 0.1);
}

input::placeholder, textarea::placeholder {
  color: var(--color-text-tertiary);
}

/* === CARDS === */
.card {
  background-color: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in {
  animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* === APP LAYOUT === */
.app-container {
  display: flex;
  min-height: 100vh;
}

.main-content {
  flex: 1 1;
  margin-left: 280px;
  transition: margin-left var(--transition-normal);
}

@media (max-width: 768px) {
  .main-content {
    margin-left: 0;
  }
}

/* === UTILITIES === */
.container {
  width: 100%;
  max-width: var(--max-width-xl);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  :root {
    --font-size-3xl: 1.75rem;
    --font-size-2xl: 1.375rem;
    --spacing-xl: 1.5rem;
    --spacing-2xl: 2rem;
  }
  
  .container {
    padding: 0 var(--spacing-md);
  }
}

/* === FOCUS VISIBLE === */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-surface);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: var(--radius);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-tertiary);
}

/* === SELECTION === */
::selection {
  background-color: var(--color-primary-light);
  color: var(--color-text);
}


/*!*************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./components/Sidebar.module.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************/
/* === LOGOUT GOLD BUTTON === */
.Sidebar_logoutGold__GxKOb {
  background: none;
  color: #c9a959;
  border: none;
  text-align: left;
  width: 100%;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  cursor: pointer;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  transition: color 0.2s;
}
.Sidebar_logoutGold__GxKOb:hover {
  color: #bfa14a;
}
/* === LOGOUT BUTTON === */
/* ============================================
   SIDEBAR STYLES - Corporativo
   ============================================ */

/* === HAMBURGER MOBILE === */
.Sidebar_hamburger__QWBlb {
  display: none;
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1002;
  width: 1.5rem;
  height: 2.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-normal), transform 0.3s cubic-bezier(0.4,0,0.2,1);
  padding: 0;
}

.Sidebar_hamburger__QWBlb::before {
  content: '›';
  font-size: 1.1rem;
  color: white;
  font-weight: bold;
  line-height: 1;
  transform: translateX(1px);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.Sidebar_hamburger__QWBlb:hover {
  width: 2.25rem;
  box-shadow: 3px 0 12px rgba(0, 0, 0, 0.3);
}

.Sidebar_hamburger__QWBlb.Sidebar_open__hW4fO::before {
  content: '‹';
  transform: translateX(-1px) rotate(180deg);
}

.Sidebar_hamburger__QWBlb span {
  display: none;
}

@media (max-width: 768px) {
  .Sidebar_hamburger__QWBlb {
    display: flex;
  }
}

/* === OVERLAY === */
.Sidebar_overlay__zPOQv {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  animation: Sidebar_fadeIn__JiuLB 0.3s ease;
}

@media (max-width: 768px) {
  .Sidebar_overlay__zPOQv {
    display: block;
  }
}

@keyframes Sidebar_fadeIn__JiuLB {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* === SIDEBAR === */
.Sidebar_sidebar__G7Mzs {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background-color: var(--color-sidebar);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transition: transform var(--transition-normal);
  color: var(--color-text-on-dark);
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .Sidebar_sidebar__G7Mzs {
    transform: translateX(-100%);
    width: 85vw;
    min-width: 0;
    max-width: 400px;
    height: 100%;
    max-height: 100%;
    position: fixed;

  }
  
  .Sidebar_sidebar__G7Mzs.Sidebar_open__hW4fO {
    transform: translateX(0);
  }
}

/* === LOGO SECTION === */
.Sidebar_logoSection__IUOqk {
  padding: 2rem 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 260px;
  margin-bottom: 0;
}

.Sidebar_logoIcon__P7jBu {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.Sidebar_logoIcon__P7jBu img,
.Sidebar_logoIcon__P7jBu svg {
  width: 100%;
  height: 100%;
}

.Sidebar_logoText__J5bd_ {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.Sidebar_logoText__J5bd_ h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-on-dark);
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1;
  display: flex;
  gap: 0.25rem;
}

.Sidebar_vmv__5xwQD {
  color: var(--color-text-on-dark);
}

.Sidebar_claims__TYvRY {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.Sidebar_logoText__J5bd_ h1 span:first-child {
  color: var(--color-text-on-dark);
}

.Sidebar_logoText__J5bd_ h1 span:last-child {
  color: var(--color-primary);
}

.Sidebar_logoText__J5bd_ p {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* === NAVIGATION === */
.Sidebar_nav__9EDqy {
  flex: 1 1;
  padding: 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow-y: auto;
  margin-top: -0.5rem;
}

.Sidebar_navItem__eIm4b {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  color: var(--color-text-on-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  transition: all var(--transition-fast);
  position: relative;
  border-radius: var(--radius);
  opacity: 1;
  letter-spacing: -0.01em;
  min-width: 220px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.Sidebar_navItem__eIm4b::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background-color: var(--color-primary);
  border-radius: 0 2px 2px 0;
  transition: height 0.2s ease;
}

.Sidebar_navItem__eIm4b:hover {
  background-color: rgba(255, 255, 255, 0.05);
  opacity: 1;
}

.Sidebar_navItem__eIm4b:hover::before {
  height: 60%;
}

.Sidebar_navItem__eIm4b.Sidebar_active__Bfm7L {
  background-color: rgba(201, 169, 89, 0.15);
  color: var(--color-primary);
  font-weight: 600;
  opacity: 1;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.Sidebar_navItem__eIm4b.Sidebar_active__Bfm7L::before {
  height: 100%;
}

.Sidebar_icon___fuEi {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  opacity: 1;
}

.Sidebar_icon___fuEi svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

/* === SETTINGS === */
.Sidebar_settings__ndLEF {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 220px;
}

.Sidebar_settingsGroup__hC0NK {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.Sidebar_settingsLabel__l6EH3 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-on-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.Sidebar_select__mG33I {
  padding: 0.625rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-family: var(--font-family);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  letter-spacing: 0;
}

.Sidebar_select__mG33I:hover,
.Sidebar_select__mG33I:focus {
  border-color: rgba(201, 169, 89, 0.5);
  background-color: rgba(255, 255, 255, 0.08);
  outline: none;
}

.Sidebar_select__mG33I option {
  background-color: var(--color-navy-medium);
  color: var(--color-text-on-dark);
}

.Sidebar_checkboxLabel__EG9Sj {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-text-on-dark);
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
  opacity: 1;
}

.Sidebar_checkboxLabel__EG9Sj:hover {
  background-color: rgba(255, 255, 255, 0.05);
  opacity: 1;
}

.Sidebar_checkbox__Lg8v7 {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  accent-color: var(--color-primary);
}

/* === FOOTER === */
.Sidebar_footer__TtSk7 {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 220px;
}

.Sidebar_footerLinks__TIKMF {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1 1;
}

.Sidebar_footerLink__Zp_4e {
  font-size: 0.8rem;
  color: var(--color-text-on-dark);
  text-decoration: none;
  transition: all var(--transition-fast);
  opacity: 0.85;
  position: relative;
}

.Sidebar_footerLink__Zp_4e:hover {
  color: var(--color-primary);
  opacity: 1;
  padding-left: 4px;
}

.Sidebar_footerTheme__8QHkN {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === THEME TOGGLE SWITCH === */
.Sidebar_themeSwitch__Rmd66 {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
  cursor: pointer;
}

.Sidebar_themeSwitch__Rmd66 input {
  opacity: 0;
  width: 0;
  height: 0;
}

.Sidebar_themeSlider__rdFAL {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 34px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.Sidebar_themeSlider__rdFAL:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.Sidebar_themeKnob__P64tE {
  position: absolute;
  left: 4px;
  bottom: 4px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.Sidebar_themeSwitch__Rmd66 input:checked + .Sidebar_themeSlider__rdFAL {
  background: #b8941f;
}

.Sidebar_themeSwitch__Rmd66 input:checked + .Sidebar_themeSlider__rdFAL:before {
  transform: translateX(28px) rotate(360deg);
}

.Sidebar_themeSwitch__Rmd66 input:checked + .Sidebar_themeSlider__rdFAL .Sidebar_themeIconSun__MT8Vm {
  opacity: 0;
  transform: rotate(-180deg);
}

.Sidebar_themeSwitch__Rmd66 input:checked + .Sidebar_themeSlider__rdFAL .Sidebar_themeIconMoon__comHt {
  opacity: 1;
  transform: rotate(0deg);
}

.Sidebar_themeSwitch__Rmd66 input:checked + .Sidebar_themeSlider__rdFAL .Sidebar_themeKnob__P64tE {
  transform: translateX(28px) rotate(360deg);
}

.Sidebar_themeSlider__rdFAL:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

/* === SCROLLBAR === */
.Sidebar_nav__9EDqy::-webkit-scrollbar {
  width: 6px;
}

.Sidebar_nav__9EDqy::-webkit-scrollbar-track {
  background: transparent;
}

.Sidebar_nav__9EDqy::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 3px;
}

.Sidebar_nav__9EDqy::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-tertiary);
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 768px) {
  .Sidebar_footer__TtSk7 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }
  
  .Sidebar_footerLinks__TIKMF {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 0.25rem;
  }
  
  .Sidebar_footerLink__Zp_4e {
    font-size: 0.75rem;
  }
  
  .Sidebar_footerTheme__8QHkN {
    width: 100%;
    justify-content: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .Sidebar_themeSwitch__Rmd66 {
    transform: scale(0.95);
  }
}

/*!***********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./components/Toast.module.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************/
.Toast_container__L8Fvx{
  position: fixed;
  right: 20px;
  bottom: 20px;
  display:flex;
  flex-direction:column;
  gap:8px;
  z-index: 120;
}
.Toast_toast__bdtJl{
  padding: 0.6rem 0.9rem;
  border-radius:8px;
  color: white;
  font-weight:600;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: Toast_toast-in__6BcXo 0.45s cubic-bezier(.23,1.01,.32,1) forwards;
}
.Toast_toast__bdtJl.Toast_toast-leave___Myy4 {
  animation: Toast_toast-out__h9omU 0.4s cubic-bezier(.23,1.01,.32,1) forwards;
}

@keyframes Toast_toast-in__6BcXo {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes Toast_toast-out__h9omU {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(40px) scale(0.95); }
}
.Toast_success__JHQnp{ background: var(--color-success); }
.Toast_error__jT7FP{ background: var(--color-error); }
.Toast_info__EHsGT{ background: var(--color-info); }

.Toast_spinner__u2dx7{
  width:16px; height:16px; border-radius:50%; border:2px solid rgba(255,255,255,0.2); border-top-color: rgba(255,255,255,0.9); animation: Toast_spin__Kf_Lp 800ms linear infinite; display:inline-block; vertical-align:middle; margin-right:8px;
}
@keyframes Toast_spin__Kf_Lp{ to{ transform: rotate(360deg); } }

.Toast_actionBtn__5Flht{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight:700;
}

/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!./node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!./node_modules/next/font/google/target.css?{"path":"app/layout.tsx","import":"Inter","arguments":[{"subsets":["latin"],"display":"swap","variable":"--font-inter"}],"variableName":"inter"} ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* cyrillic-ext */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/ba9851c3c22cd980-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/21350d82a1f187e9-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/df0a9ae256c0569c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/8e9860b6e62d6359-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: '__Inter_Fallback_f367f3';src: local("Arial");ascent-override: 90.49%;descent-override: 22.56%;line-gap-override: 0.00%;size-adjust: 107.06%
}.__className_f367f3 {font-family: '__Inter_f367f3', '__Inter_Fallback_f367f3';font-style: normal
}.__variable_f367f3 {--font-inter: '__Inter_f367f3', '__Inter_Fallback_f367f3'
}

