

        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Fira Code', monospace;
            background-color: var(--background-color);
            color: var(--text-color);
           
            
        }

        .app-container {
            display: flex;
            flex-direction: column;
            height: 100vh;
        }

       
		
		 .user-menu {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--primary-color);
            transition: transform 0.3s ease;
        }

        .user-avatar:hover {
            transform: scale(1.1);
        }

        .main-content {
            display: flex;
            flex: 1;
            overflow: hidden;
        }
        
		.panel {
            flex: 1;
            display: flex;
            flex-direction: column;
            border-right: 1px solid var(--border-color);
        }

        .panel-header {
            background-color: var(--header-background);
            padding: 10px 15px;
            font-size: 16px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .panel-content {
            flex: 1;
            overflow: hidden;
        }

       

        @media (max-width: 768px) {
            .editor-container {
                flex-direction: column;
            }

            .panel {
                height: 33.33%;
                border-right: none;
                border-bottom: 1px solid var(--border-color);
            }

            .preview-container {
                height: 50%;
            }

            
            .user-menu {
                flex-direction: column;
                align-items: flex-end;
            }

            .button {
                font-size: 14px;
                padding: 8px 16px;
            }
        }

        /* Animations */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .logo {
            animation: pulse 2s infinite;
        }

        @keyframes slideIn {
            from { transform: translateX(100%); }
            to { transform: translateX(0); }
        }

       