* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

		body {
			display: flex;
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
			background-color: #ffffff;
			color: #1a1a1a;
		}


        /* Sidebar Styles */
		.sidebar {
			width: 270px;
			height: 100vh;
			background-color: #f8f9fa;
			border-right: 1px solid #e0e0e0;
			flex-shrink: 0; /* Prevents the sidebar from shrinking */
			overflow-y: auto; /* Allows the sidebar menu to scroll */
		}
		

        .sidebar.collapsed {
            width: 60px;
        }

        .logo {
            padding: 20px;
            font-size: 24px;
            font-weight: bold;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-text {
            transition: opacity 0.3s ease;
        }

        .sidebar.collapsed .logo-text {
            opacity: 0;
            width: 0;
            overflow: hidden;
        }

        .menu-item {
            position: relative;
        }

        .menu-link {
            display: flex;
            align-items: center;
            padding: 6px 20px;
            text-decoration: none;
            color: #333;
            transition: background-color 0.2s;
            cursor: pointer;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
            font-size: 14px;
        }

        .menu-link:hover {
            background-color: #e8e8e8;
        }

        .menu-link.active {
            background-color: #e0e0e0;
            font-weight: 500;
        }

        .menu-icon {
            margin-right: 12px;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .menu-text {
            transition: opacity 0.3s ease;
            white-space: nowrap;
        }

        .sidebar.collapsed .menu-text {
            opacity: 0;
            width: 0;
            overflow: hidden;
        }

        .expand-icon {
            margin-left: auto;
            transition: transform 0.3s ease;
            opacity: 0.6;
        }

        .sidebar.collapsed .expand-icon {
            display: none;
        }

        .menu-item.expanded .expand-icon {
            transform: rotate(90deg);
        }

        .submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: #f0f0f0;
        }

        .menu-item.expanded .submenu {
            max-height: 500px;
        }

        .submenu .menu-link {
            padding-left: 52px;
            font-size: 13px;
        }

        /* Main Content Styles */
		.main-container {
			flex-grow: 1; /* This makes it fill the available space */
			overflow-y: auto; /* Allows the main content to scroll */
		}

        .header {
            background-color: #fff;
            border-bottom: 1px solid #e0e0e0;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-links {
            display: flex;
            gap: 32px;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            font-weight: 500;
            padding-bottom: 2px;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            border-bottom-color: #333;
        }

        .search-bar {
            display: flex;
            align-items: center;
            background-color: #f5f5f5;
            border-radius: 6px;
            padding: 8px 16px;
            min-width: 300px;
        }

        .search-bar input {
            border: none;
            background: none;
            outline: none;
            width: 100%;
            font-size: 14px;
            margin-left: 8px;
        }

		.main-content {
			flex: 1;
			padding: 40px;
			/* REMOVE any margin-left properties from here */
		}

        .content-section {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .section-title {
            font-size: 32px;
            margin-bottom: 24px;
            color: #1a1a1a;
        }

        .section-description {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 24px;
            text-align: left;
            border: 1px solid #e0e0e0;
            transition: box-shadow 0.2s;
        }

        .card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .card h3 {
            margin-bottom: 12px;
            color: #1a1a1a;
        }

        .card p {
            color: #666;
            line-height: 1.5;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .sidebar {
                position: absolute;
                z-index: 1000;
                height: 100%;
                box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
            }

            .search-bar {
                min-width: 150px;
            }

            .main-content {
                padding: 20px;
            }
        }
		.large-icon {
			font-size: 150%;
		}
		
        .mytheme-framework {
            border: 1px solid #ccc;
            padding: 20px;
            border-radius: 5px;
            margin: 20px; /* Added margin to the container */
            text-align: left; /* Explicitly align text to the left */
        }
        /* Tier-based indentation and styling. */
        .tier-1 {
            font-size: 1.5em;
            font-weight: bold;
            margin-bottom: 15px;
        }
        .tier-2 {
            font-size: 1.3em;
            font-weight: bold;
            margin-left: 20px;
            margin-bottom: 10px;
        }
        .tier-3 {
            font-size: 1.1em;
            margin-left: 40px;
            margin-bottom: 5px;
        }
        .tier-4 {
            margin-left: 60px;
        }