/* Custom Scrollbar for Sidebar */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 2px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Base styles adjustments */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure icons are aligned */
[data-lucide] {
  display: inline-block;
  vertical-align: middle;
}

/* Cookie Banner Modal Styles */
#cookie-banner {
  position: fixed;
  inset: 0; /* Top, Right, Bottom, Left: 0 */
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 9999; /* Highest priority */
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px); /* Blur effect on background */
}

#cookie-banner.visible {
  display: flex;
}

/* The actual card inside the overlay */
.cookie-modal-content {
  background: white;
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease-out; /* Bouncy pop effect */
  overflow: hidden;
}

#cookie-banner.visible .cookie-modal-content {
  transform: scale(1);
  opacity: 1;
}