       
        /* Enhanced form field labels with FFO triggers */
        .form-group label {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 5px;
            font-weight: 500;
            color: #333;
        }

        /* FFO trigger button styling */
        .ffo-trigger {
            background: transparent;
            border: none;
            color: #3498db;
            cursor: pointer;
            padding: 2px 6px;
            border-radius: 3px;
            transition: all 0.3s ease;
            margin-left: 5px;
        }

        .ffo-trigger:hover {
            background: #e8f4f8;
            color: #2980b9;
        }

        .ffo-icon {
            animation: boltPulse 2s infinite;
            font-size: 1.1rem;
        }

        @keyframes boltPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

  