/* FAB SYSTEM COMPLETELY DISABLED - Removed per user request */

/*
=== FLOATING ACTION BUTTON SYSTEM DISABLED ===
All FAB-related CSS has been commented out as requested.
The existing "New Item" button is now the primary action button
and has been modernized through the integration script.
*/

/*
/* Floating Action Button & Quick Access Menu - DISABLED FOR INTEGRATION */
/*
.fab-container {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 10000;
}

.fab-main {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 32px 0 rgba(102, 126, 234, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.fab-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fab-main:hover::before {
  opacity: 1;
}

.fab-main:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 12px 40px 0 rgba(102, 126, 234, 0.6);
}

.fab-menu {
  position: absolute;
  bottom: 80px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

.fab-menu.open {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.fab-item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #1e293b;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.fab-item:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateX(-8px) scale(1.1);
  box-shadow: 0 8px 25px rgba(31, 38, 135, 0.3);
}

.fab-item::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 60px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.fab-item:hover::after {
  opacity: 1;
}
*/

/* Quick Theme Toggle - COMMENTED OUT TO AVOID CONFLICTS 
.theme-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 26px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10000;
}

.theme-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.theme-toggle.dark::after {
  transform: translateX(22px);
  background: #1e293b;
}

.theme-toggle.dark {
  background: rgba(0, 0, 0, 0.3);
}
*/

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 16px 24px;
  color: #1e293b;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  z-index: 10001;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  max-width: 400px;
  text-align: center;
}

.notification.show {
  transform: translateX(-50%) translateY(0);
}

.notification.success {
  border-left: 4px solid #4facfe;
}

.notification.error {
  border-left: 4px solid #f5576c;
}

.notification.warning {
  border-left: 4px solid #43e97b;
}

/* Progress Bar */
.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10002;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.progress-container.active {
  opacity: 1;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
  background-size: 200% 100%;
  animation: gradient-flow 2s ease-in-out infinite;
  width: 0%;
  transition: width 0.3s ease;
}

@keyframes gradient-flow {
  0% { background-position: 200% 0%; }
  50% { background-position: 0% 0%; }
  100% { background-position: -200% 0%; }
}

/* Enhanced Tooltips */
.tooltip {
  position: relative;
  cursor: help;
}

.tooltip::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  z-index: 10003;
  margin-bottom: 5px;
}

.tooltip::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.tooltip:hover::before,
.tooltip:hover::after {
  opacity: 1;
}

/* Context Menu */
.context-menu {
  position: fixed;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  z-index: 10004;
  display: none;
  font-family: 'Inter', sans-serif;
}

.context-menu-item {
  padding: 12px 20px;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.context-menu-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.context-menu-item.separator {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 4px;
  padding-top: 8px;
}

/* Search Bar Enhancement */
.search-container {
  position: relative;
  max-width: 400px;
  margin: 20px auto;
}

.search-input {
  width: 100%;
  padding: 16px 50px 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1e293b;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  background: rgba(255, 255, 255, 0.4);
}

.search-input::placeholder {
  color: #64748b;
  font-weight: 400;
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 18px;
  pointer-events: none;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .fab-container {
    bottom: 20px;
    right: 20px;
  }
  
  .fab-main {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
  
  .fab-item {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  
  .theme-toggle {
    top: 10px;
    left: 10px;
    width: 44px;
    height: 22px;
  }
  
  .theme-toggle::after {
    width: 18px;
    height: 18px;
  }
  
  .theme-toggle.dark::after {
    transform: translateX(20px);
  }
}
