
        /* Dropdown */
        .search-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            margin-top: 0.5rem;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            max-height: 300px;
            overflow-y: auto;
            z-index: 50;
        }
        .search-dropdown-item {
            padding: 0.75rem 1rem;
            cursor: pointer;
            transition: background-color 0.15s;
        }
        .search-dropdown-item:hover {
            background-color: #f3f4f6;
        }
        .search-dropdown-item:not(:last-child) {
            border-bottom: 1px solid #f3f4f6;
        }
        
        /* Tooltip */
        .tooltip {
            position: fixed;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.75rem;
            padding: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            max-width: 300px;
            z-index: 1000;
        }
        
        /* Gradiente */
        .gradient-blue {
            background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
        }
        .gradient-blue:hover {
            background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
        }
        
        /* x-cloak */
        [x-cloak] { display: none !important; }
    