
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            display: flex;
            min-height: 100vh;
             font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
		
		:root {
            --background: #020314;
            --foreground: #ffffff;
            --muted: rgba(255, 255, 255, 0.6);
            --primary: #ff1cf7;
            --primary-gradient: linear-gradient(to right, #18bfe3, #b249f8);
            --border-color: rgba(255, 255, 255, 0.1);
        }

        .nav {
            width: 250px;
            background-color: #0a0b1b;
            color: #8b95a7;
            padding: 1rem;
            position: relative;
            transition: width 0.3s ease;
        }

        .nav::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background-color: #ffa700;
        }

        .logo {
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-list {
            list-style: none;
        }

        .nav-item {
            margin-bottom: 1rem;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: inherit;
            text-decoration: none;
            padding: 0.5rem;
            border-radius: 4px;
            transition: background-color 0.2s;
        }

        .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .nav-text {
            font-size: 0.9rem;
        }

        .divider {
            height: 1px;
            background-color: rgba(255, 255, 255, 0.1);
            margin: 1rem 0;
        }

        .user {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem;
            margin-top: auto;
        }

        .user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: #2a3142;
        }

        .user-info {
            flex-grow: 1;
        }

        .user-name {
            color: white;
            font-size: 0.9rem;
        }

        .user-role {
            font-size: 0.8rem;
        }

        .content {
            flex-grow: 1;
            padding: 2rem;
            background-color: #2a3142;
        }

        .content-section {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }

        @media (max-width: 768px) {
            .nav {
                width: 60px;
            }

            .nav-text,
            .logo-text,
            .user-info {
                display: none;
            }

            .logo {
                justify-content: center;
            }

            .nav-link {
                justify-content: center;
            }

            .user {
                justify-content: center;
            }
			
			.button.outline {
            background: transparent;
            border: 1px solid var(--border-color);
        }
		
		 .#sketch-container {
            width: 80%;
            height: 80%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
		@media (max-width: 767px) {
    #sketch-container {
        width: 90%;
        height: 90%;
        margin-left: -60px; 
    }
}

        }
