@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap");

@tailwind base;

@tailwind components;

@tailwind utilities;

@font-face {
  font-family: "Pptelegraf-Light";
  src: url("../assets/fonts/PPTelegraf-Light.ttf") format("trueType");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pptelegraf-Bold";
  src: url("../assets/fonts/PPTelegraf-Bold.ttf") format("trueType");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hw Pano Regular";
  src: url("../assets/fonts/HWPano-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hw Pano Bold";
  src: url("../assets/fonts/HWPano-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hw Pano Light";
  src: url("/assets/fonts/HWPano-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NetNest-Medium";
  src: url("../assets/fonts/NetNest-Medium.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary_color: #00ff00;
  --title-font: "Syne", serif;
  --body-font: "Albert Sans", serif;
}

/* Dark mode (default) */

[data-theme="dark"] {
  --primary_color: #00ff00;
  --primary_color_alpha_05: rgba(0, 255, 0, 0.05);
  --primary_color_alpha_10: rgba(0, 255, 0, 0.1);
  --primary_color_alpha_15: rgba(0, 255, 0, 0.15);
  --primary_color_alpha_25: rgba(0, 255, 0, 0.25);
  --white: #ffffff;
  --grey: #8d8d8d;
  --black: #000000;
  --background: #000000;
  --surface: #1a1a1a;
  --surface-light: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #8d8d8d;
  --text-on-primary: #000000;
  --border: #444444;
  --button-bg: transparent;
  --button-border: #ffffff;
  --button-text: #ffffff;
  --button-hover-bg: #ffffff;
  --button-hover-text: #000000;
  --card-bg: #1a1a1a;
  --input-bg: #2a2a2a;
}

/* Light mode */

[data-theme="light"] {
  --primary_color: #000000;
  --primary_color_alpha_05: rgba(0, 0, 0, 0.05);
  --primary_color_alpha_10: rgba(0, 0, 0, 0.1);
  --primary_color_alpha_15: rgba(0, 0, 0, 0.15);
  --primary_color_alpha_25: rgba(0, 0, 0, 0.25);
  --white: #ffffff;
  --grey: #666666;
  --black: #000000;
  --background: #fafbfc;
  --surface: #f8fafc;
  --surface-light: #ffffff;
  --text-primary: #000;
  --text-secondary: #718096;
  --text-on-primary: #ffffff;
  --border: #e2e8f0;
  --button-bg: transparent;
  --button-border: #000;
  --button-text: #000000;
  --button-hover-bg: #000;
  --button-hover-text: #ffffff;
  --card-bg: #ffffff;
  --input-bg: #f8fafc;
}

/* Algemene reset voor marges en paddings */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

/* Verwijder ruimte rond kopteksten en andere tekst */

h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
label,
span,
select,
input,
textarea,
button {
  margin: 0;
  padding: 0;
  line-height: 1; /* Verminder lijnhoogte */
}

/* Specifieke instellingen voor lettertypen */

h1,
h2,
h3,
h4,
h5,
li {
  font-family: "NetNest-Medium", sans-serif;
  color: var(--text-primary);
  line-height: 1.5;
}

a,
p,
label,
textarea,
span,
select,
input,
input::placeholder,
textarea,
textarea::placeholder,
button {
  font-family: "Pptelegraf-Light", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  text-decoration: none;
  color: inherit;
}

p {
  line-height: 150%;
  color: var(--text-secondary);
}

i {
  font-size: 1.5rem !important;
}

/* Specifieke styling voor kopteksten */

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1rem;
  font-weight: 600;
}

h4 {
  font-size: 0.875rem;
}

a {
  color: var(--text-primary);
  text-decoration: none;
}

a:visited {
  color: var(--text-primary);
}

a:hover {
  color: var(--text-primary);
}

input,
textarea,
select {
  border: none;
  background: var(--input-bg);
  color: var(--text-primary);
}

input::placeholder,
textarea::placeholder,
p,
select {
  color: var(--text-secondary);
}

input:focus,
textarea:focus {
  border: none;
  outline: none;
}

li {
  list-style: none;
}

span {
  font-size: 14px;
}

/* Exception for user avatar span */

.user-avatar span {
  color: inherit;
}

body {
  background-color: var(--background);
  font-family: "Pptelegraf-Light", sans-serif;
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Content container styling */

.content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.125rem;
  width: 100%;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .content {
    padding: 1.5rem 3rem;
    gap: 7.5rem;
  }
}

@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 0 0% 3.9%;
    --card: 0 0% 100%;
    --card-foreground: 0 0% 3.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 3.9%;
    --primary: 0 0% 9%;
    --primary-foreground: 0 0% 98%;
    --secondary: 0 0% 96.1%;
    --secondary-foreground: 0 0% 9%;
    --muted: 0 0% 96.1%;
    --muted-foreground: 0 0% 45.1%;
    --accent: 0 0% 96.1%;
    --accent-foreground: 0 0% 9%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 0 0% 89.8%;
    --input: 0 0% 89.8%;
    --ring: 0 0% 3.9%;
    --chart-1: 12 76% 61%;
    --chart-2: 173 58% 39%;
    --chart-3: 197 37% 24%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;
    --radius: 0.5rem;
    --sidebar-background: 0 0% 98%;
    --sidebar-foreground: 240 5.3% 26.1%;
    --sidebar-primary: 240 5.9% 10%;
    --sidebar-primary-foreground: 0 0% 98%;
    --sidebar-accent: 240 4.8% 95.9%;
    --sidebar-accent-foreground: 240 5.9% 10%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }
  .dark {
    --background: 0 0% 3.9%;
    --foreground: 0 0% 98%;
    --card: 0 0% 3.9%;
    --card-foreground: 0 0% 98%;
    --popover: 0 0% 3.9%;
    --popover-foreground: 0 0% 98%;
    --primary: 0 0% 98%;
    --primary-foreground: 0 0% 9%;
    --secondary: 0 0% 14.9%;
    --secondary-foreground: 0 0% 98%;
    --muted: 0 0% 14.9%;
    --muted-foreground: 0 0% 63.9%;
    --accent: 0 0% 14.9%;
    --accent-foreground: 0 0% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 0 0% 98%;
    --border: 0 0% 14.9%;
    --input: 0 0% 14.9%;
    --ring: 0 0% 83.1%;
    --chart-1: 220 70% 50%;
    --chart-2: 160 60% 45%;
    --chart-3: 30 80% 55%;
    --chart-4: 280 65% 60%;
    --chart-5: 340 75% 55%;
    --sidebar-background: 240 5.9% 10%;
    --sidebar-foreground: 240 4.8% 95.9%;
    --sidebar-primary: 224.3 76.3% 48%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 240 3.7% 15.9%;
    --sidebar-accent-foreground: 240 4.8% 95.9%;
    --sidebar-border: 240 3.7% 15.9%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }
}

@layer base {
  * {
    @apply border-border;
  }
  body {
    @apply bg-background text-foreground;
  }
}

.theme-toggle[data-v-88b0b313] {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text-primary);
}
.theme-toggle[data-v-88b0b313]:hover {
  background-color: var(--surface);
  border-color: var(--primary_color);
}
.theme-icon[data-v-88b0b313] {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.theme-toggle:hover .theme-icon[data-v-88b0b313] {
  transform: scale(1.1);
}
.theme-toggle[data-v-88b0b313]:focus {
  outline: none;
  border-color: var(--primary_color);
  box-shadow: 0 0 0 2px var(--primary_color_alpha_25);
}

.nav-group[data-v-b7cc34db] { margin-bottom: 0.5rem; list-style: none;
}
.nav-group-header[data-v-b7cc34db] {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  color: var(--text-secondary);
  border-radius: 8px;
}
.nav-group-header[data-v-b7cc34db]:focus { outline: none; box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}
.nav-group-header[data-v-b7cc34db]:hover { color: var(--text-primary); background: var(--surface-light);
}
.nav-group-title[data-v-b7cc34db] { flex: 1; font-weight: 600; font-size: 0.85rem; margin-left: 0.5rem;
}
.nav-group-chevron[data-v-b7cc34db] { margin-left: auto; transition: transform 0.18s ease; color: var(--text-secondary);
}
.nav-group.closed .nav-group-chevron[data-v-b7cc34db] { transform: rotate(-90deg);
}
.nav-group-items[data-v-b7cc34db] { padding-left: 0.25rem; margin: 0.25rem 0 0 0;
}

/* make the icon visible and center header when sidebar is collapsed */
.nav-icon[data-v-b7cc34db] { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center;
}
.nav-icon img[data-v-b7cc34db] { width: 20px; height: 20px;
}
.nav-group.sidebar-collapsed .nav-group-header[data-v-b7cc34db] { justify-content: center;
}
.nav-group.sidebar-collapsed .nav-group-title[data-v-b7cc34db] { display: none;
}
.nav-group.sidebar-collapsed .nav-group-chevron[data-v-b7cc34db] { display: none;
}

/* simple collapse transition (height) */
.collapse-enter-active[data-v-b7cc34db], .collapse-leave-active[data-v-b7cc34db] { transition: max-height 0.18s ease, opacity 0.12s ease; overflow: hidden;
}
.collapse-enter-from[data-v-b7cc34db], .collapse-leave-to[data-v-b7cc34db] { max-height: 0; opacity: 0;
}
.collapse-enter-to[data-v-b7cc34db], .collapse-leave-from[data-v-b7cc34db] { max-height: 800px; opacity: 1;
}


.sidebar[data-v-51e89b26] {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  z-index: 1000;
}
.sidebar-hidden[data-v-51e89b26] {
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0.8, 0.6, 1);
}
.sidebar-collapsed[data-v-51e89b26] {
  width: 80px;
}
.sidebar-header[data-v-51e89b26] {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
  min-height: 72px;
}
.logo-container[data-v-51e89b26] {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.logo-image[data-v-51e89b26] {
  flex-shrink: 0;
  margin-right: 0.75rem;
  height: 1.5rem;
  width: auto;
}

/* keep simple styling for image; explicit assets are used for theme variants */
.logo-image[data-v-51e89b26] {
  transition: opacity 0.18s ease;
}
.sidebar-collapsed .logo-image[data-v-51e89b26] {
  margin-right: 0;
}
.logo-text[data-v-51e89b26] {
  font-family: "NetNest-Medium", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary_color);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.collapse-button[data-v-51e89b26] {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.collapse-button[data-v-51e89b26]:hover {
  background: var(--surface-light);
  color: var(--text-primary);
}

/* Modern sidebar toggle button */
.sidebar-toggle[data-v-51e89b26] {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 12px 12px 0;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}
.sidebar-toggle[data-v-51e89b26]:hover {
  background: var(--surface-light);
  color: var(--primary_color);
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) translateX(2px);
}
.sidebar-toggle[data-v-51e89b26]:active {
  transform: translateY(-50%) translateX(1px);
}
.sidebar-nav[data-v-51e89b26] {
  flex: 1;
  padding: 1rem 0;
  overflow-y: auto;
}
.nav-list[data-v-51e89b26] {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1rem;
}

/* ...existing code... */
.nav-item[data-v-51e89b26] {
  margin-bottom: 0.25rem;
}

/* Speciaal voor dashboard-item: geen extra margin links/rechts */
.nav-item-dashboard[data-v-51e89b26] {
  margin-bottom: 0.25rem;
}
.nav-link[data-v-51e89b26] {
  display: flex;
  align-items: center;
  padding: 0.875rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  margin: 0 0.5rem;
  border-radius: 8px;
  font-family: "Pptelegraf-Light", sans-serif;
  font-size: 0.875rem;
}
.nav-link-dashboard[data-v-51e89b26] {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0.75rem;
}
.nav-link[data-v-51e89b26]:hover {
  background: var(--surface-light);
  color: var(--text-primary);
}
.nav-link.router-link-active[data-v-51e89b26] {
  background: var(--primary_color_alpha_10);
  color: var(--primary_color);
  font-weight: 400;
}
.nav-link.router-link-active[data-v-51e89b26]::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: var(--primary_color);
  border-radius: 0 2px 2px 0;
}
.nav-icon[data-v-51e89b26] {
  flex-shrink: 0;
  margin-right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.nav-icon-img[data-v-51e89b26] {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(0.5); /* Makes icons grey by default */
  transition: filter 0.2s ease;
}
.nav-link:hover .nav-icon-img[data-v-51e89b26] {
  filter: brightness(0) invert(1); /* Makes icons white on hover in dark mode */
}

/* Light mode override for hover icons */
[data-theme="light"] .nav-link:hover .nav-icon-img[data-v-51e89b26] {
  filter: brightness(0) invert(0); /* Makes icons black on hover in light mode */
}
.nav-link.router-link-active .nav-icon-img[data-v-51e89b26] {
  filter: brightness(0) saturate(100%) invert(40%) sepia(95%) saturate(4044%)
    hue-rotate(85deg) brightness(109%) contrast(110%);
}

/* Dark mode override for icons */
[data-theme="dark"] .nav-link.router-link-active .nav-icon-img[data-v-51e89b26] {
  filter: none; /* Shows original green color when active in dark mode */
}

/* Light mode override for icons */
[data-theme="light"] .nav-link.router-link-active .nav-icon-img[data-v-51e89b26] {
  filter: brightness(0) invert(0); /* Shows black color when active in light mode */
}
.sidebar-collapsed .nav-icon[data-v-51e89b26] {
  margin-right: 0;
}
.nav-text[data-v-51e89b26] {
  font-weight: 500;
  font-size: 0.875rem;
  opacity: 1;
  transition: opacity 0.3s ease;
  flex: 1;
}
.coming-soon[data-v-51e89b26] {
  background: var(--border);
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-weight: 500;
  margin-left: auto;
}
.sidebar-footer[data-v-51e89b26] {
  border-top: 1px solid var(--border);
  padding: 1rem;
  position: relative;
}
.user-profile[data-v-51e89b26] {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.user-profile[data-v-51e89b26]:hover {
  background: var(--surface-light);
}
.user-avatar[data-v-51e89b26] {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary_color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}
.user-avatar-img[data-v-51e89b26] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.sidebar-collapsed .user-avatar[data-v-51e89b26] {
  margin-right: 0;
}
.user-info[data-v-51e89b26] {
  flex: 1;
  min-width: 0;
}
.user-name[data-v-51e89b26] {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-role[data-v-51e89b26] {
  color: var(--text-secondary);
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-menu-toggle[data-v-51e89b26] {
  color: var(--text-secondary);
  transition: transform 0.2s ease;
}
.user-menu[data-v-51e89b26] {
  position: absolute;
  bottom: 100%;
  left: 1rem;
  right: 1rem;
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}
.menu-item[data-v-51e89b26] {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}
.menu-item[data-v-51e89b26]:hover {
  background: var(--surface);
  color: var(--text-primary);
}
.menu-item svg[data-v-51e89b26] {
  margin-right: 0.75rem;
  flex-shrink: 0;
}
.theme-toggle-item[data-v-51e89b26] {
  justify-content: space-between;
  cursor: default;
}
.theme-toggle-item[data-v-51e89b26]:hover {
  background: transparent;
}
.theme-label[data-v-51e89b26] {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.menu-divider[data-v-51e89b26] {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}
.sidebar-debug[data-v-51e89b26] {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-size: 0.75rem;
  border-bottom: 1px dashed var(--border);
}
.sidebar-overlay[data-v-51e89b26] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
.sidebar[data-v-51e89b26] {
    transform: translateX(-100%);
}
.sidebar[data-v-51e89b26]:not(.sidebar-collapsed) {
    transform: translateX(0);
    width: 280px;
}
.sidebar-collapsed[data-v-51e89b26] {
    transform: translateX(-100%);
}
}

/* Animation utilities */
@keyframes slideIn-51e89b26 {
from {
    opacity: 0;
    transform: translateY(-10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.user-menu[data-v-51e89b26] {
  animation: slideIn-51e89b26 0.2s ease;
}
/* Vertical line for grouping child items under each SidebarGroup */
.sidebar-group-children[data-v-51e89b26] {
  position: relative;
  margin-left: 1.25rem;
  padding-left: 0.75rem;
}
.sidebar-group-children[data-v-51e89b26]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  border-radius: 2px;
  opacity: 0.5;
}

/* Chat unread messages badge */
.chat-unread-badge[data-v-51e89b26] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--primary_color);
  color: black;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 50%;
  margin-left: auto;
  flex-shrink: 0;
}

/* Toast Container */
.toast-container[data-v-fdf2296a] {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
}

/* Individual Toast */
.toast[data-v-fdf2296a] {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 320px;
  max-width: 480px;
  padding: 1rem 1.5rem;
  background: var(--surface, #1a1a1a);
  border: 1px solid rgba(132, 204, 22, 0.2);
  border-radius: 12px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(132, 204, 22, 0.1);
  pointer-events: all;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.toast-clickable[data-v-fdf2296a] {
  cursor: pointer;
}
.toast-clickable[data-v-fdf2296a]:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(132, 204, 22, 0.15);
}

/* Gradient border animation for chat notifications */
.toast-chat[data-v-fdf2296a] {
  border-color: rgba(132, 204, 22, 0.4);
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.95),
    rgba(26, 26, 26, 0.9)
  );
}
.toast-chat[data-v-fdf2296a]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary_color), transparent);
  animation: slideTopBorder-fdf2296a 0.6s ease;
}
@keyframes slideTopBorder-fdf2296a {
from {
    left: -100%;
}
to {
    left: 100%;
}
}
.toast-error[data-v-fdf2296a] {
  border-color: rgba(239, 68, 68, 0.3);
}
.toast-error .toast-icon[data-v-fdf2296a] {
  color: #ef4444;
}
.toast-success[data-v-fdf2296a] {
  border-color: rgba(34, 197, 94, 0.3);
}
.toast-success .toast-icon[data-v-fdf2296a] {
  color: #22c55e;
}
.toast-info[data-v-fdf2296a] {
  border-color: rgba(59, 130, 246, 0.3);
}
.toast-info .toast-icon[data-v-fdf2296a] {
  color: #3b82f6;
}

/* Icon */
.toast-icon[data-v-fdf2296a] {
  color: var(--primary_color, #84cc16);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* Content */
.toast-content[data-v-fdf2296a] {
  flex: 1;
  min-width: 0;
}
.toast-title[data-v-fdf2296a] {
  color: var(--text-primary, #fff);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.toast-message[data-v-fdf2296a] {
  color: var(--text-secondary, #999);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.toast-sender[data-v-fdf2296a] {
  color: var(--primary_color, #84cc16);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Close button */
.toast-close[data-v-fdf2296a] {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: var(--text-secondary, #666);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
  margin-top: 2px;
}
.toast-close[data-v-fdf2296a]:hover {
  background: rgba(132, 204, 22, 0.1);
  color: var(--primary_color, #84cc16);
}

/* Animations */
.toast-enter-active[data-v-fdf2296a] {
  animation: slideInRight-fdf2296a 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast-leave-active[data-v-fdf2296a] {
  animation: slideOutRight-fdf2296a 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideInRight-fdf2296a {
from {
    opacity: 0;
    transform: translateX(100%) translateY(20px);
}
to {
    opacity: 1;
    transform: translateX(0) translateY(0);
}
}
@keyframes slideOutRight-fdf2296a {
from {
    opacity: 1;
    transform: translateX(0) translateY(0);
}
to {
    opacity: 0;
    transform: translateX(100%) translateY(20px);
}
}

/* Mobile Responsive */
@media (max-width: 768px) {
.toast-container[data-v-fdf2296a] {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
}
.toast[data-v-fdf2296a] {
    min-width: unset;
    max-width: unset;
}
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#app {
  min-height: 100vh;
}

/* Auth loading screen */
.auth-loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: var(--background);
}
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e2e8f0;
  border-top: 4px solid #00ff00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}
@keyframes spin {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
.auth-loading p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Access denied banner */
.access-denied-banner {
  background: #fee;
  border-bottom: 1px solid #fcc;
  padding: 1rem;
  position: relative;
  z-index: 999;
}
.banner-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
  color: #c53030;
  font-weight: 500;
}
.banner-icon {
  font-size: 1.2rem;
}
.dismiss-btn {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #c53030;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.dismiss-btn:hover {
  opacity: 0.7;
}
.app-layout {
  display: flex;
  min-height: 100vh;
}
.main-content {
  flex: 1;
  transition: margin-left 0.3s ease;
  min-height: 100vh;
  background-color: var(--background);
  padding: 0;
  margin-left: calc(280px + 2rem); /* Sidebar width + 2rem spacing */
}
.main-content.sidebar-gone {
  margin-left: 0 !important;
}
.sidebar-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

/* When sidebar is collapsed */
body.sidebar-collapsed .main-content {
  margin-left: calc(80px + 2rem); /* Collapsed sidebar width + 2rem spacing */
}

/* Mobile responsive */
@media (max-width: 768px) {
.main-content {
    margin-left: 0; /* No margin on mobile - sidebar overlays */
}
body.sidebar-collapsed .main-content {
    margin-left: 0; /* No margin on mobile when collapsed */
}
}
body {
  font-family: "Pptelegraf-Light", sans-serif;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sidebar-btn[data-v-53ae29a1] {
  background: none;
  border: none;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}
.sidebar-btn[data-v-53ae29a1]:hover {
  background: var(--surface-light);
}
.sidebar-btn img[data-v-53ae29a1] {
  width: 28px;
  height: 28px;
}

.btn[data-v-22349e8b] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Pptelegraf-Bold", sans-serif;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  position: relative;
}
.btn--small[data-v-22349e8b] {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 6px;
}
.btn--medium[data-v-22349e8b] {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
}
.btn--large[data-v-22349e8b] {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 12px;
}
.btn--primary[data-v-22349e8b] {
  background: transparent;
  color: var(--primary_color);
  border: 2px solid var(--primary_color);
  box-shadow: 0 4px 15px var(--primary_color_alpha_15);
}

/* Active state - primary color background en contrasting tekst */
.btn--primary.btn--active[data-v-22349e8b] {
  background: var(--primary_color);
  color: var(--background);
  border: 2px solid var(--primary_color);
  box-shadow: 0 4px 15px var(--primary_color_alpha_25);
}
.btn--secondary[data-v-22349e8b] {
  background: transparent;
  color: var(--primary_color);
  border: 2px solid var(--primary_color);
}
.btn--secondary.btn--active[data-v-22349e8b] {
  background: var(--primary_color);
  color: var(--background);
}
.btn--outline[data-v-22349e8b] {
  background: transparent;
  color: var(--primary_color);
  border: 2px solid var(--primary_color);
}
.btn--outline.btn--active[data-v-22349e8b] {
  background: var(--primary_color);
  color: var(--background);
}
.btn--ghost[data-v-22349e8b] {
  background: transparent;
  color: var(--primary_color);
  border: 2px solid transparent;
}
.btn--ghost.btn--active[data-v-22349e8b] {
  background: var(--primary_color);
  color: var(--background);
  border-color: var(--primary_color);
}
.btn--danger[data-v-22349e8b] {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.15);
}
.btn--danger.btn--active[data-v-22349e8b] {
  background: #ef4444;
  color: #ffffff;
  border: 2px solid #ef4444;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.35);
}

/* General active state styling */
.btn--active[data-v-22349e8b] {
  font-weight: 700;
  transition: all 0.2s ease;
}

/* Button content and icons */
.btn-content[data-v-22349e8b] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-icon-img[data-v-22349e8b] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Icon filters for different button states */
.btn--primary:not(.btn--active) .btn-icon-img[data-v-22349e8b],
.btn--secondary:not(.btn--active) .btn-icon-img[data-v-22349e8b],
.btn--outline:not(.btn--active) .btn-icon-img[data-v-22349e8b],
.btn--ghost:not(.btn--active) .btn-icon-img[data-v-22349e8b] {
  filter: brightness(0) saturate(100%) invert(50%) sepia(100%) saturate(5000%) hue-rotate(90deg);
}
.btn--primary.btn--active .btn-icon-img[data-v-22349e8b],
.btn--secondary.btn--active .btn-icon-img[data-v-22349e8b],
.btn--outline.btn--active .btn-icon-img[data-v-22349e8b],
.btn--ghost.btn--active .btn-icon-img[data-v-22349e8b] {
  filter: brightness(0) invert(1);
}

/* Dark mode specific icon adjustments */
[data-theme="dark"] .btn--primary:not(.btn--active) .btn-icon-img[data-v-22349e8b],
[data-theme="dark"] .btn--secondary:not(.btn--active) .btn-icon-img[data-v-22349e8b],
[data-theme="dark"] .btn--outline:not(.btn--active) .btn-icon-img[data-v-22349e8b],
[data-theme="dark"] .btn--ghost:not(.btn--active) .btn-icon-img[data-v-22349e8b] {
  filter: brightness(0) saturate(100%) invert(50%) sepia(100%) saturate(5000%) hue-rotate(90deg);
}
[data-theme="dark"] .btn--primary.btn--active .btn-icon-img[data-v-22349e8b],
[data-theme="dark"] .btn--secondary.btn--active .btn-icon-img[data-v-22349e8b],
[data-theme="dark"] .btn--outline.btn--active .btn-icon-img[data-v-22349e8b],
[data-theme="dark"] .btn--ghost.btn--active .btn-icon-img[data-v-22349e8b] {
  filter: brightness(0) invert(0);
}

/* Light mode specific icon adjustments */
[data-theme="light"] .btn--primary:not(.btn--active) .btn-icon-img[data-v-22349e8b],
[data-theme="light"] .btn--secondary:not(.btn--active) .btn-icon-img[data-v-22349e8b],
[data-theme="light"] .btn--outline:not(.btn--active) .btn-icon-img[data-v-22349e8b],
[data-theme="light"] .btn--ghost:not(.btn--active) .btn-icon-img[data-v-22349e8b] {
  filter: brightness(0) invert(0);
}
[data-theme="light"] .btn--primary.btn--active .btn-icon-img[data-v-22349e8b],
[data-theme="light"] .btn--secondary.btn--active .btn-icon-img[data-v-22349e8b],
[data-theme="light"] .btn--outline.btn--active .btn-icon-img[data-v-22349e8b],
[data-theme="light"] .btn--ghost.btn--active .btn-icon-img[data-v-22349e8b] {
  filter: brightness(0) invert(1);
}
.btn--disabled[data-v-22349e8b] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
  pointer-events: none;
}
.btn--loading[data-v-22349e8b] {
  cursor: wait;
}
.btn--block[data-v-22349e8b] {
  width: 100%;
}
.btn-spinner[data-v-22349e8b] {
  animation: spin-22349e8b 1s linear infinite;
}
@keyframes spin-22349e8b {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}

.add-fab-menu-wrapper[data-v-ab652098] {
  position: relative;
  display: flex;
  align-items: center;
}
.add-fab-btn[data-v-ab652098] {
  background: var(--primary_color);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: background 0.2s;
}
.add-fab-btn svg[data-v-ab652098] {
  color: #000;
  width: 2rem;
  height: 2rem;
}
.add-fab-menu[data-v-ab652098] {
  position: absolute;
  top: 110%;
  right: 0;
  background: var(--surface);
  border-radius: 0.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  min-width: 180px;
  z-index: 10;
  padding: 0.5rem 0;
}
.add-fab-menu-item[data-v-ab652098] {
  background: none;
  border: none;
  color: var(--text-primary);
  text-align: left;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s;
}
.fade-enter-active[data-v-ab652098],
.fade-leave-active[data-v-ab652098] {
  transition: opacity 0.15s;
}
.fade-enter[data-v-ab652098],
.fade-leave-to[data-v-ab652098] {
  opacity: 0;
}

.switch[data-v-1e0b248a] {
  display: inline-block;
  position: relative;
  width: 42px;
  height: 24px;
}
.switch input[data-v-1e0b248a] {
  display: none;
}
.switch-slider[data-v-1e0b248a] {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--surface-light);
  border: 1px solid var(--border);
  transition: 0.2s;
  border-radius: 999px;
}
.switch-slider[data-v-1e0b248a]:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.switch input:checked + .switch-slider[data-v-1e0b248a] {
  background-color: var(--primary_color);
  border-color: var(--primary_color);
}
.switch input:checked + .switch-slider[data-v-1e0b248a]:before {
  transform: translateY(-50%) translateX(18px);
}

/* --- Styling overgenomen van Deals.vue custom dropdowns --- */
.custom-dropdown[data-v-b1bb870b] {
  position: relative;
}
.dropdown-selected[data-v-b1bb870b] {
  background: var(--input-bg, #222);
  color: #fff;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  height: 2rem;
  font-size: 0.97rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: border 0.2s, background 0.2s;
}
.dropdown-selected[data-v-b1bb870b]:hover,
.dropdown-selected[data-v-b1bb870b]:focus {
  border-color: var(--primary_color, #4f46e5);
  background: #18181b;
}
.dropdown-arrow[data-v-b1bb870b] {
  margin-left: 0.5em;
  color: #fff;
  width: 1.1em;
  height: 1.1em;
  vertical-align: middle;
}
.dropdown-options[data-v-b1bb870b] {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: var(--input-bg, #222);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 10;
  padding: 0.15rem 0;
}
.dropdown-option[data-v-b1bb870b] {
  color: #fff;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 0.5rem;
  margin: 0 0.15rem;
}
.dropdown-option.selected[data-v-b1bb870b] {
  background: var(--primary_color, #4f46e5);
  color: #fff;
}
.dropdown-option[data-v-b1bb870b]:hover {
  background: #f3f4f6;
  color: #000;
}

.btn[data-v-aa1f768b] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 6px;
  padding: 0.6em 1.5em;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  outline: none;
  min-height: 2.5rem;
  min-width: 2.5rem;
}
.btn-block[data-v-aa1f768b] {
  width: 100%;
  display: flex;
}
.btn-primary[data-v-aa1f768b] {
  background: var(--primary_color, #4f46e5);
  color: #000;
}
.btn-secondary[data-v-aa1f768b] {
  background: var(--surface, #fff);
  color: var(--primary_color, #4f46e5);
  border: 1px solid var(--primary_color, #4f46e5);
}
.btn-outline[data-v-aa1f768b] {
  background: transparent;
  color: var(--primary_color, #4f46e5);
  border: 1px solid var(--primary_color, #4f46e5);
}
.btn-danger[data-v-aa1f768b] {
  background: #ef4444;
  color: #fff;
}
.btn-danger[data-v-aa1f768b]:hover:not(:disabled) {
  background: #b91c1c;
}
.btn[data-v-aa1f768b]:disabled,
.btn.btn-loading[data-v-aa1f768b] {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-spinner[data-v-aa1f768b] {
  border: 2px solid #fff;
  border-top: 2px solid #4f46e5;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  animation: spin-aa1f768b 1s linear infinite;
  display: inline-block;
}
@keyframes spin-aa1f768b {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}

.calendar-wrapper[data-v-6094c7e7] {
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 0.5rem;
  padding: 1rem;
  max-width: 400px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.calendar-header[data-v-6094c7e7] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.nav-button[data-v-6094c7e7] {
  background: none;
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s;
}
.nav-button[data-v-6094c7e7]:hover {
  background: var(--surface-light, #f5f5f5);
  border-color: var(--primary_color, #1a237e);
}
.month-year[data-v-6094c7e7] {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary, #333);
}
.month-year-selector[data-v-6094c7e7] {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.selector[data-v-6094c7e7] {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 4px;
  font-size: 0.95rem;
  cursor: pointer;
  background: var(--surface, #fff);
  color: var(--text-primary, #333);
}
.selector[data-v-6094c7e7]:hover {
  border-color: var(--primary_color, #1a237e);
}
.calendar[data-v-6094c7e7] {
  width: 100%;
}
.weekdays[data-v-6094c7e7] {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.weekday[data-v-6094c7e7] {
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem;
  color: var(--text-secondary, #666);
}
.days[data-v-6094c7e7] {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}
.day[data-v-6094c7e7] {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  border: 1px solid transparent;
  background: var(--surface, #fff);
  color: var(--text-primary, #333);
  transition: all 0.2s;
}
.day[data-v-6094c7e7]:not(.disabled):hover {
  background: var(--surface-light, #f5f5f5);
  border-color: var(--primary_color, #1a237e);
}
.day.other-month[data-v-6094c7e7] {
  color: var(--text-secondary, #ccc);
  background: var(--surface-light, #f9f9f9);
}
.day.today[data-v-6094c7e7] {
  border-color: #00ff00;
  border-width: 2px;
  font-weight: 600;
}
.day.selected[data-v-6094c7e7] {
  background: var(--primary_color, #1a237e);
  color: #fff;
  font-weight: 600;
}
.day.disabled[data-v-6094c7e7] {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--surface-light, #f5f5f5);
}

/* Calendar popup styling zoals in DealAdd.vue */
.calendar-popup[data-v-b471fc54] {
  position: absolute;
  top: 2.5em;
  left: 0;
  z-index: 100;
  background: #18181b;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.date-input[data-v-b471fc54]:focus {
  box-shadow: 0 0 0 2px var(--primary_color, #4f46e5);
}
.date-input[data-v-b471fc54] {
  padding-left: 3em !important;
}
.date-input[data-v-b471fc54]::placeholder {
  color: #bbb;
  opacity: 1;
}
.form-block[data-v-b471fc54] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-block-title[data-v-b471fc54] {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.add-task-popup-overlay[data-v-b471fc54] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem 0;
}
.add-task-popup[data-v-b471fc54] {
  background: var(--surface);
  border-radius: 0.75rem;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.12);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.add-task-popup-header[data-v-b471fc54] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.add-task-popup form[data-v-b471fc54] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.close-icon[data-v-b471fc54] {
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
  color: #fff;
  transition: color 0.2s;
}
.form-grid[data-v-b471fc54] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}
.form-section[data-v-b471fc54] {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
}
.form-section label[data-v-b471fc54] {
  margin-bottom: 0.5rem;
}
.form-section input[data-v-b471fc54],
.form-section select[data-v-b471fc54],
.form-section textarea[data-v-b471fc54] {
  padding: 0.5rem;
  border-radius: 4px;
}
.form-section textarea[data-v-b471fc54] {
  min-height: 60px;
}
.single-col[data-v-b471fc54] {
  margin-top: 0.5rem;
  width: 100%;
}
.single-col input[data-v-b471fc54],
.single-col textarea[data-v-b471fc54] {
  width: 100%;
  max-width: 100%;
}
.search-results[data-v-b471fc54] {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  margin-top: 0.25rem;
  list-style: none;
  padding: 0;
  max-height: 120px;
  overflow-y: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.search-results li[data-v-b471fc54] {
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.search-results li[data-v-b471fc54]:hover {
  background: #f3f4f6;
}
.form-actions[data-v-b471fc54] {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  grid-column: 1 / span 2;
}
.input-icon-wrapper[data-v-b471fc54] {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--input-bg, #222);
  border-radius: 0.5rem;
}
.input-icon[data-v-b471fc54] {
  position: absolute;
  width: 1rem;
  height: 1rem;
  color: #fff;
  pointer-events: none;
  left: 0.5rem;
}
.input-icon-wrapper.input-icon-right .input-icon[data-v-b471fc54] {
  right: 0.75rem;
  left: auto;
}
.input-icon-wrapper.input-icon-right input[data-v-b471fc54] {
  padding-left: 0.5rem;
  padding-right: 2rem;
}
.input-icon-wrapper:not(.input-icon-right) input[data-v-b471fc54] {
  padding-left: 2rem;
}

/* Specifiek voor timer input: padding links voor icon */
.input-icon-wrapper input[type="time"][data-v-b471fc54] {
  padding-left: 2rem;
}
.grid-span-2[data-v-b471fc54] {
  grid-column: 1 / span 2;
  width: 100%;
  max-width: 100%;
}
/* --- Prospectie-style suggestions dropdown for client search (from DealAdd.vue) --- */
.prospectie-suggestions-dropdown[data-v-b471fc54] {
  background: #222;
  border: 1px solid #444;
  border-radius: 6px;
  list-style: none;
  padding: 0;
  max-height: 180px;
  overflow-y: auto;
  z-index: 40;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.prospectie-suggestions-dropdown .suggestion-item[data-v-b471fc54] {
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.prospectie-suggestions-dropdown .suggestion-item.active[data-v-b471fc54],
.prospectie-suggestions-dropdown .suggestion-item[data-v-b471fc54]:hover {
  background: var(--primary_color, #4f46e5);
  color: #fff;
}
.prospectie-suggestions-dropdown .suggestion-text[data-v-b471fc54] {
  font-weight: 500;
  color: #fff;
}
/* Zorg dat de client dropdown onder het inputveld staat */
.client-search-section[data-v-b471fc54] {
  position: relative;
  z-index: 30;
}

/* Calendar popup styling zoals in DealAdd.vue */
.calendar-popup[data-v-c23da7f6] {
  position: absolute;
  top: 2.5em;
  left: 0;
  z-index: 100;
  background: #18181b;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.date-input[data-v-c23da7f6]:focus {
  box-shadow: 0 0 0 2px var(--primary_color, #4f46e5);
}
.date-input[data-v-c23da7f6] {
  padding-left: 3em !important;
}
.date-input[data-v-c23da7f6]::placeholder {
  color: #bbb;
  opacity: 1;
}
.form-block[data-v-c23da7f6] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-block-title[data-v-c23da7f6] {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.add-task-popup-overlay[data-v-c23da7f6] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem 0;
}
.add-task-popup[data-v-c23da7f6] {
  background: var(--surface);
  border-radius: 0.75rem;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.12);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.add-task-popup-header[data-v-c23da7f6] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.add-task-popup form[data-v-c23da7f6] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.close-icon[data-v-c23da7f6] {
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
  color: #fff;
  transition: color 0.2s;
}
.form-grid[data-v-c23da7f6] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}
.form-section[data-v-c23da7f6] {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
}
.form-section label[data-v-c23da7f6] {
  margin-bottom: 0.5rem;
}
.form-section input[data-v-c23da7f6],
.form-section select[data-v-c23da7f6],
.form-section textarea[data-v-c23da7f6] {
  padding: 0.5rem;
  border-radius: 4px;
}
.form-section textarea[data-v-c23da7f6] {
  min-height: 60px;
}
.single-col[data-v-c23da7f6] {
  margin-top: 0.5rem;
  width: 100%;
}
.single-col input[data-v-c23da7f6],
.single-col textarea[data-v-c23da7f6] {
  width: 100%;
  max-width: 100%;
}
.search-results[data-v-c23da7f6] {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  margin-top: 0.25rem;
  list-style: none;
  padding: 0;
  max-height: 120px;
  overflow-y: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.search-results li[data-v-c23da7f6] {
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.search-results li[data-v-c23da7f6]:hover {
  background: #f3f4f6;
}
.form-actions[data-v-c23da7f6] {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  grid-column: 1 / span 2;
}
.input-icon-wrapper[data-v-c23da7f6] {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--input-bg, #222);
  border-radius: 0.5rem;
}
.input-icon[data-v-c23da7f6] {
  position: absolute;
  width: 1rem;
  height: 1rem;
  color: #fff;
  pointer-events: none;
  left: 0.5rem;
}
.input-icon-wrapper.input-icon-right .input-icon[data-v-c23da7f6] {
  right: 0.75rem;
  left: auto;
}
.input-icon-wrapper.input-icon-right input[data-v-c23da7f6] {
  padding-left: 0.5rem;
  padding-right: 2rem;
}
.input-icon-wrapper:not(.input-icon-right) input[data-v-c23da7f6] {
  padding-left: 2rem;
}

/* Specifiek voor timer input: padding links voor icon */
.input-icon-wrapper input[type="time"][data-v-c23da7f6] {
  padding-left: 2rem;
}
.grid-span-2[data-v-c23da7f6] {
  grid-column: 1 / span 2;
  width: 100%;
  max-width: 100%;
}
/* --- Prospectie-style suggestions dropdown for client search (from DealAdd.vue) --- */
.prospectie-suggestions-dropdown[data-v-c23da7f6] {
  background: #222;
  border: 1px solid #444;
  border-radius: 6px;
  list-style: none;
  padding: 0;
  max-height: 180px;
  overflow-y: auto;
  z-index: 40;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.prospectie-suggestions-dropdown .suggestion-item[data-v-c23da7f6] {
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.prospectie-suggestions-dropdown .suggestion-item.active[data-v-c23da7f6],
.prospectie-suggestions-dropdown .suggestion-item[data-v-c23da7f6]:hover {
  background: var(--primary_color, #4f46e5);
  color: #fff;
}
.prospectie-suggestions-dropdown .suggestion-text[data-v-c23da7f6] {
  font-weight: 500;
  color: #fff;
}
/* Zorg dat de client dropdown onder het inputveld staat */
.client-search-section[data-v-c23da7f6] {
  position: relative;
  z-index: 30;
}

/* Calendar popup styling zoals in DealAdd.vue */
.calendar-popup[data-v-f46e7b69] {
  position: absolute;
  top: 2.5em;
  left: 0;
  z-index: 100;
  background: #18181b;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.date-input[data-v-f46e7b69]:focus {
  box-shadow: 0 0 0 2px var(--primary_color, #4f46e5);
}
.date-input[data-v-f46e7b69] {
  padding-left: 3em !important;
}
.date-input[data-v-f46e7b69]::placeholder {
  color: #bbb;
  opacity: 1;
}
.form-block[data-v-f46e7b69] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-block-title[data-v-f46e7b69] {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.add-task-popup-overlay[data-v-f46e7b69] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem 0;
}
.add-task-popup[data-v-f46e7b69] {
  background: var(--surface);
  border-radius: 0.75rem;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.12);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.add-task-popup-header[data-v-f46e7b69] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.add-task-popup form[data-v-f46e7b69] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.close-icon[data-v-f46e7b69] {
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
  color: #fff;
  transition: color 0.2s;
}
.form-grid[data-v-f46e7b69] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}
.form-section[data-v-f46e7b69] {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
}
.form-section label[data-v-f46e7b69] {
  margin-bottom: 0.5rem;
}
.form-section input[data-v-f46e7b69],
.form-section select[data-v-f46e7b69],
.form-section textarea[data-v-f46e7b69] {
  padding: 0.5rem;
  border-radius: 4px;
}
.form-section textarea[data-v-f46e7b69] {
  min-height: 60px;
}
.single-col[data-v-f46e7b69] {
  margin-top: 0.5rem;
  width: 100%;
}
.single-col input[data-v-f46e7b69],
.single-col textarea[data-v-f46e7b69] {
  width: 100%;
  max-width: 100%;
}
.search-results[data-v-f46e7b69] {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  margin-top: 0.25rem;
  list-style: none;
  padding: 0;
  max-height: 120px;
  overflow-y: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.search-results li[data-v-f46e7b69] {
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.search-results li[data-v-f46e7b69]:hover {
  background: #f3f4f6;
}
.form-actions[data-v-f46e7b69] {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  grid-column: 1 / span 2;
}
.input-icon-wrapper[data-v-f46e7b69] {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--input-bg, #222);
  border-radius: 0.5rem;
}
.input-icon[data-v-f46e7b69] {
  position: absolute;
  width: 1rem;
  height: 1rem;
  color: #fff;
  pointer-events: none;
  left: 0.5rem;
}
.input-icon-wrapper.input-icon-right .input-icon[data-v-f46e7b69] {
  right: 0.75rem;
  left: auto;
}
.input-icon-wrapper.input-icon-right input[data-v-f46e7b69] {
  padding-left: 0.5rem;
  padding-right: 2rem;
}
.input-icon-wrapper:not(.input-icon-right) input[data-v-f46e7b69] {
  padding-left: 2rem;
}

/* Specifiek voor timer input: padding links voor icon */
.input-icon-wrapper input[type="time"][data-v-f46e7b69] {
  padding-left: 2rem;
}
.grid-span-2[data-v-f46e7b69] {
  grid-column: 1 / span 2;
  width: 100%;
  max-width: 100%;
}
/* --- Prospectie-style suggestions dropdown for client search (from DealAdd.vue) --- */
.prospectie-suggestions-dropdown[data-v-f46e7b69] {
  background: #222;
  border: 1px solid #444;
  border-radius: 6px;
  list-style: none;
  padding: 0;
  max-height: 180px;
  overflow-y: auto;
  z-index: 40;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.prospectie-suggestions-dropdown .suggestion-item[data-v-f46e7b69] {
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.prospectie-suggestions-dropdown .suggestion-item.active[data-v-f46e7b69],
.prospectie-suggestions-dropdown .suggestion-item[data-v-f46e7b69]:hover {
  background: var(--primary_color, #4f46e5);
  color: #fff;
}
.prospectie-suggestions-dropdown .suggestion-text[data-v-f46e7b69] {
  font-weight: 500;
  color: #fff;
}
/* Zorg dat de client dropdown onder het inputveld staat */
.client-search-section[data-v-f46e7b69] {
  position: relative;
  z-index: 30;
}

.home[data-v-11455a72] {
  min-height: 100vh;
  background: var(--background);
}
.home-container[data-v-11455a72] {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.page-header[data-v-11455a72] {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.page-header h1[data-v-11455a72] {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.page-header p[data-v-11455a72] {
  color: var(--text-secondary);
}
.company-count[data-v-11455a72] {
  color: var(--primary_color);
  font-weight: 600;
}
.tools-grid[data-v-11455a72] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.tool-card[data-v-11455a72] {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.tool-card[data-v-11455a72]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary_color);
}
.tool-card:hover .tool-icon[data-v-11455a72] {
  background: var(--primary_color);
}
.tool-card:hover .tool-icon-img[data-v-11455a72] {
  filter: brightness(0) invert(0);
}
.tool-card.active[data-v-11455a72] {
  border-color: var(--primary_color);
  box-shadow: 0 4px 20px var(--primary_color_alpha_15);
}
.tool-content[data-v-11455a72] {
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tool-card h3[data-v-11455a72] {
  color: var(--text-primary) !important;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.tool-card p[data-v-11455a72] {
  color: var(--text-secondary) !important;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.tool-icon[data-v-11455a72] {
  width: 48px;
  height: 48px;
  background: var(--primary_color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1rem;
}
.tool-icon-img[data-v-11455a72] {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(0); /* Make icon black by default */
}

/* Light mode: white icons on active cards */
[data-theme="light"] .tool-card.active .tool-icon-img[data-v-11455a72] {
  filter: brightness(0) invert(1); /* Make icon white in light mode when active */
}

/* Dark mode: keep icons white on active cards */
[data-theme="dark"] .tool-card.active .tool-icon-img[data-v-11455a72] {
  filter: brightness(0) invert(1); /* Make icon white in dark mode when active */
}
.tool-card:not(.active) .tool-icon[data-v-11455a72] {
  background: var(--border);
  color: var(--text-secondary);
}
.tool-card:not(.active) .tool-icon-img[data-v-11455a72] {
  filter: brightness(0) invert(0.45);
}
.tool-card:hover:not(.active) .tool-icon[data-v-11455a72] {
  background: var(--primary_color);
}
.tool-card:hover:not(.active) .tool-icon-img[data-v-11455a72] {
  filter: brightness(0) invert(0);
}
.tool-status[data-v-11455a72] {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tool-status.active[data-v-11455a72] {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.tool-status.coming-soon[data-v-11455a72] {
  background: rgba(107, 114, 128, 0.1);
  color: #6b7280;
}
.recent-activity[data-v-11455a72] {
  background: var(--surface);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}
.recent-activity h2[data-v-11455a72] {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.activity-list[data-v-11455a72] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.activity-item[data-v-11455a72] {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--background);
  border: 1px solid var(--border);
}
.activity-icon[data-v-11455a72] {
  width: 36px;
  height: 36px;
  background: var(--primary_color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.activity-icon-img[data-v-11455a72] {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1); /* Make icon white */
}
.activity-content[data-v-11455a72] {
  flex: 1;
}
.activity-content p[data-v-11455a72] {
  color: var(--text-primary) !important;
  margin-bottom: 0.25rem;
}
.activity-time[data-v-11455a72] {
  color: var(--text-secondary) !important;
}

/* Loading State */
.loading-state[data-v-11455a72] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.loading-spinner[data-v-11455a72] {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border);
  border-top: 4px solid var(--primary_color);
  border-radius: 50%;
  animation: spin-11455a72 1s linear infinite;
  margin-bottom: 1rem;
}
@keyframes spin-11455a72 {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
.loading-state p[data-v-11455a72] {
  color: var(--text-secondary);
  margin: 0;
}

/* Error State */
.error-state[data-v-11455a72] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.error-icon[data-v-11455a72] {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.error-state p[data-v-11455a72] {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.retry-btn[data-v-11455a72] {
  background: var(--primary_color);
  color: black;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}
.retry-btn[data-v-11455a72]:hover {
  background: var(--primary_color);
  transform: translateY(-1px);
}

/* Empty Activity State */
.empty-activity-state[data-v-11455a72] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.empty-icon[data-v-11455a72] {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.empty-activity-state h3[data-v-11455a72] {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.empty-activity-state p[data-v-11455a72] {
  color: var(--text-secondary);
  margin: 0;
}

/* Tablet and up */
@media (min-width: 768px) {
.page-header h1[data-v-11455a72] {
    font-size: 2.5rem;
}
}

/* Mobile Responsive */
@media (max-width: 768px) {
.home-container[data-v-11455a72] {
    padding: 0;
}
.page-header h1[data-v-11455a72] {
    font-size: 2rem;
}
.tools-grid[data-v-11455a72] {
    grid-template-columns: 1fr;
    gap: 1rem;
}
.tool-content[data-v-11455a72] {
    padding: 1.25rem;
}
.recent-activity[data-v-11455a72] {
    padding: 1.25rem;
}
.activity-item[data-v-11455a72] {
    padding: 0.75rem;
}
}

/* Desktop and up */
@media (min-width: 1024px) {
.page-header h1[data-v-11455a72] {
    font-size: 3rem;
}
}

.login-page[data-v-cdeb93c5] {
  display: flex;
  height: 100vh;
  background: #f8fafc;
  overflow: hidden;
}

/* Left side - Form Section */
.form-section[data-v-cdeb93c5] {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: white;
  position: relative;
  overflow-y: auto;
  max-height: 100vh;
}
.form-container[data-v-cdeb93c5] {
  width: 100%;
  max-width: 400px;
}
.logo[data-v-cdeb93c5] {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.5rem;
  background-image: url("../assets/images/Logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Right side - Visual */
.visual-section[data-v-cdeb93c5] {
  background-image: url("../assets/images/login-visual.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  flex: 1;
  height: 100vh;
  max-height: 100vh;
  display: none;
}
.form-content h2[data-v-cdeb93c5] {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.subtitle[data-v-cdeb93c5] {
  color: #64748b;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.5;
}

/* Test users info */
.test-users-info[data-v-cdeb93c5] {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.test-users-info h4[data-v-cdeb93c5] {
  margin-bottom: 0.5rem;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 600;
}
.test-user[data-v-cdeb93c5] {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  padding: 0.25rem 0;
  cursor: pointer;
  transition: color 0.2s;
  border-radius: 4px;
  padding-left: 0.5rem;
}
.test-user[data-v-cdeb93c5]:hover {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.05);
}
.test-user strong[data-v-cdeb93c5] {
  color: #6366f1;
  font-weight: 600;
}
.test-user small[data-v-cdeb93c5] {
  color: #94a3b8;
  margin-left: 0.5rem;
}
.show-test-btn[data-v-cdeb93c5],
.hide-test-btn[data-v-cdeb93c5] {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  cursor: pointer;
  margin-bottom: 1.5rem;
  width: 100%;
  transition: all 0.2s;
  font-weight: 500;
}
.show-test-btn[data-v-cdeb93c5]:hover,
.hide-test-btn[data-v-cdeb93c5]:hover {
  background: #e2e8f0;
}

/* Error message */
.error-message[data-v-cdeb93c5] {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.error-icon[data-v-cdeb93c5] {
  font-size: 1.2rem;
}
.error-message p[data-v-cdeb93c5] {
  margin: 0;
  color: #dc2626;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Form styling */
.login-form[data-v-cdeb93c5] {
  display: flex;
  flex-direction: column;
}
.form-group[data-v-cdeb93c5] {
  margin-bottom: 1.5rem;
}
.form-group label[data-v-cdeb93c5] {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
  font-size: 0.875rem;
}
.form-group input[data-v-cdeb93c5] {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  background: white;
  color: #374151;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.form-group input[data-v-cdeb93c5]:focus {
  outline: none;
  border-color: var(--primary_color);
  box-shadow: 0 0 0 3px var(--primary_color_alpha_10);
}
.form-group input[data-v-cdeb93c5]:disabled {
  background-color: #f9fafb;
  cursor: not-allowed;
}
.password-input-container[data-v-cdeb93c5] {
  position: relative;
}
.password-toggle[data-v-cdeb93c5] {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: #9ca3af;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  transition: all 0.2s;
}
.password-toggle[data-v-cdeb93c5]:hover {
  background-color: #f3f4f6;
  color: #6b7280;
}
.password-toggle[data-v-cdeb93c5]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.form-options[data-v-cdeb93c5] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.checkbox-container[data-v-cdeb93c5] {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.875rem;
  color: #6b7280;
}
.checkbox-container input[data-v-cdeb93c5] {
  margin-right: 0.5rem;
  width: 16px;
  height: 16px;
  accent-color: var(--primary_color);
}
.forgot-password[data-v-cdeb93c5] {
  color: var(--primary_color);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.forgot-password[data-v-cdeb93c5]:hover {
  color: var(--primary_color);
  opacity: 0.8;
}

/* Custom button styling for login */
.login-btn[data-v-cdeb93c5] {
  background: var(--primary_color) !important;
  color: var(--background) !important;
  border: 2px solid var(--primary_color) !important;
  box-shadow: 0 4px 15px var(--primary_color_alpha_25) !important;
  margin-bottom: 1.5rem;
}
.login-btn[data-v-cdeb93c5]:hover:not(:disabled) {
  background: var(--primary_color) !important;
  border-color: var(--primary_color) !important;
  transform: translateY(-1px);
  opacity: 0.9;
}
.login-btn[data-v-cdeb93c5]:disabled {
  background: var(--grey) !important;
  border-color: var(--grey) !important;
  box-shadow: none !important;
  opacity: 0.6;
}

/* Divider */
.divider[data-v-cdeb93c5] {
  position: relative;
  text-align: center;
  margin: 1.5rem 0;
}
.divider[data-v-cdeb93c5]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
}
.divider span[data-v-cdeb93c5] {
  background: white;
  color: #9ca3af;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Social login */
.social-login[data-v-cdeb93c5] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.social-btn[data-v-cdeb93c5] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.social-btn[data-v-cdeb93c5]:hover {
  border-color: #d1d5db;
  background: #f9fafb;
}

/* Apple button styling removed when Apple sign-in was disabled */

/* Signup link */
.signup-link[data-v-cdeb93c5] {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}
.signup-link a[data-v-cdeb93c5] {
  color: var(--primary_color);
  text-decoration: none;
  font-weight: 500;
}
.signup-link a[data-v-cdeb93c5]:hover {
  color: var(--primary_color);
  opacity: 0.8;
}
@keyframes float-cdeb93c5 {
0%,
  100% {
    transform: translateY(0px) rotate(0deg);
}
50% {
    transform: translateY(-20px) rotate(10deg);
}
}
.content-overlay[data-v-cdeb93c5] {
  padding: 3rem;
  color: white;
  max-width: 480px;
  text-align: left;
}
.content-overlay h3[data-v-cdeb93c5] {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.content-overlay p[data-v-cdeb93c5] {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Show visual section only on desktop */
@media (min-width: 1024px) {
.visual-section[data-v-cdeb93c5] {
    display: block;
}
}

/* Responsive Design */
@media (max-width: 768px) {
.login-page[data-v-cdeb93c5] {
    flex-direction: column;
}
.content-overlay[data-v-cdeb93c5] {
    padding: 2rem;
    text-align: center;
}
.content-overlay h3[data-v-cdeb93c5] {
    font-size: 1.8rem;
}
.content-overlay p[data-v-cdeb93c5] {
    font-size: 1rem;
}
.form-section[data-v-cdeb93c5] {
    padding: 1.5rem;
}
.form-options[data-v-cdeb93c5] {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}
.forgot-password[data-v-cdeb93c5] {
    align-self: center;
}
}
@media (max-width: 480px) {
.form-section[data-v-cdeb93c5] {
    padding: 1rem;
}
.form-content h2[data-v-cdeb93c5] {
    font-size: 1.75rem;
}
.visual-section[data-v-cdeb93c5] {
    min-height: 150px;
}
.content-overlay h3[data-v-cdeb93c5] {
    font-size: 1.5rem;
}
}
