/*Google Login Styles - Compact Navigation Integration */
        #google-login {
            /* Minimal styling to avoid interfering with Google's rendering */
            display: block;
        }
        
        #user-info {
            display: none;
            align-items: center;
            gap: 8px;
            padding: 4px;
            background: rgba(31, 41, 55, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(75, 85, 99, 0.3);
            border-radius: 50px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        #user-info:hover {
            background: rgba(31, 41, 55, 0.9);
            border-color: rgba(217, 70, 239, 0.3);
        }
        
        #profile-pic {
            width: 36px !important;
            height: 36px !important;
            border-radius: 50% !important;
            border: 2px solid rgba(217, 70, 239, 0.3) !important;
            transition: all 0.3s ease !important;
            object-fit: cover !important;
            display: block !important;
            cursor: pointer !important;
        }
        
        #user-info:hover #profile-pic {
            border-color: rgba(217, 70, 239, 0.6) !important;
            transform: scale(1.05) !important;
        }
        
        .user-details {
            display: none !important;
        }
        
        #logout-btn {
            background: linear-gradient(135deg, #ef4444, #dc2626) !important;
            color: white !important;
            border: none !important;
            padding: 6px 12px !important;
            border-radius: 20px !important;
            cursor: pointer !important;
            font-size: 11px !important;
            font-weight: 500 !important;
            transition: all 0.3s ease !important;
            white-space: nowrap !important;
            line-height: 1 !important;
            opacity: 0 !important;
            transform: translateX(-10px) !important;
            position: absolute !important;
            right: 4px !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            pointer-events: none !important;
        }
        
        #user-info:hover #logout-btn {
            opacity: 1 !important;
            transform: translateY(-50%) !important;
            pointer-events: auto !important;
        }
        
        #logout-btn:hover {
            background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
            transform: translateY(-50%) scale(1.05) !important;
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3) !important;
        }

/*Navbar - Enhanced with Glass Morphism */

                .navbar {
                    position: fixed;
                    top: 0;
                    left: 0;
                    right: 0;
                    z-index: 1000;
                    background: rgba(17, 24, 39, 0.8);
                    backdrop-filter: blur(12px);
                    border-bottom: 1px solid rgba(217, 70, 239, 0.2);
                }
                .navbar-container {
                    max-width: 1280px;
                    margin: 0 auto;
                    padding: 0 24px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    height: 72px;
                }
                .logo {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    text-decoration: none;
                    color: white;
                    font-weight: 700;
                    font-size: 20px;
                }
                .logo-icon {
                    width: 40px;
                    height: 40px;
                    background: linear-gradient(135deg, #d946ef, #a855f7);
                    border-radius: 10px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
                .nav-links {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    list-style: none;
                }
                .nav-link {
                    padding: 10px 16px;
                    color: #9ca3af;
                    text-decoration: none;
                    font-weight: 500;
                    font-size: 14px;
                    border-radius: 8px;
                    transition: all 0.2s;
                    display: flex;
                    align-items: center;
                    gap: 8px;
                }
                .nav-link:hover {
                    color: white;
                    background: rgba(217, 70, 239, 0.1);
                }
                .nav-link.active {
                    color: #d946ef;
                    background: rgba(217, 70, 239, 0.15);
                }
                .cta-button {
                    padding: 10px 20px;
                    background: linear-gradient(135deg, #d946ef, #a855f7);
                    color: white;
                    text-decoration: none;
                    font-weight: 600;
                    font-size: 14px;
                    border-radius: 10px;
                    transition: all 0.2s;
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    box-shadow: 0 4px 14px rgba(217, 70, 239, 0.3);
                }
                .cta-button:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 6px 20px rgba(217, 70, 239, 0.4);
                }
                .mobile-menu {
                    display: none;
                }
                @media (max-width: 1024px) {
                    .nav-links {
                        display: none;
                    }
                    .mobile-menu {
                        display: block;
                    }
                }


/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Custom animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-in {
    animation: slideIn 0.5s ease-out forwards;
}

/* Drag and drop states */
.drag-active {
    border-color: #d946ef !important;
    background: rgba(217, 70, 239, 0.1) !important;
}
/* BPMN diagram container */
#bpmn-diagram {
    position: relative;
    overflow: hidden;
}

#bpmn-diagram .djs-container {
    background: #ffffff !important;
}

#bpmn-diagram svg {
    width: 100%;
    height: 100%;
}


/* Hide palette since we're using viewer mode */
#bpmn-diagram .djs-palette {
    display: none !important;
}

/* Ensure proper sizing */
#bpmn-diagram .djs-element {
    cursor: default;
}
/* Validation issue cards */
.issue-card {
    transition: all 0.3s ease;
}

.issue-card:hover {
    transform: translateX(4px);
}

/* Glass morphism effect */
.glass {
    background: rgba(31, 41, 55, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 85, 99, 0.3);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #d946ef, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse animation for status indicators */
.status-pulse {
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .djs-container {
        height: 300px !important;
    }
}

/* Tooltip styles */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 6px 12px;
    background: #1f2937;
    color: #f9fafb;
    font-size: 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 50;
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-4px);
}
