/**
  @license Copyleft
  @copyright MetodologIA
  @author Javier Montaño
  @technology Antigravity | GoogleAI Studio | Gemini 3 Pro | Gemini 3 Flash
  @poweredBy Pristino Agent
 */

/* Gantt Chart Bars */
.gantt-lane { 
    position: relative; 
    padding: 1.5rem 0; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

.gantt-bar { 
    height: 44px; 
    border-radius: 0.75rem; 
    display: flex; 
    align-items: center; 
    padding: 0 1rem; 
    font-size: 0.75rem; 
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    color: white;
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

.gantt-bar:hover { 
    transform: translateY(-2px) scale(1.02); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Premium Gradient Bars */
.bar-slate { background: linear-gradient(135deg, #475569, #334155); }
.bar-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.bar-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.bar-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.bar-yellow { background: linear-gradient(135deg, #eab308, #ca8a04); }
.bar-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.bar-emerald { background: linear-gradient(135deg, #10b981, #059669); }
.bar-pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.bar-red { background: linear-gradient(135deg, #ef4444, #dc2626); }

/* Toggle Styles */
.route-toggle {
    display: inline-flex;
    padding: 0.25rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
}

.route-toggle-item {
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.route-toggle-item.active {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.route-toggle-item:not(.active) {
    color: var(--text-muted);
}

.route-toggle-item:not(.active):hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

