/* General Styles */
        body {
            font-family: Arial, sans-serif;
            background-color: #f1f3f4;
            color: #202124;
            padding-top: 70px;
            margin-right: 270px; /* Ensure main content is not behind the sidebar */
        }

        /* Fixed Header */
        .fixed-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #fff;
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .fixed-header h1 {
            font-size: 22px;
            font-weight: bold;
        }

        /* Sidebar */
        #sidebar {
            position: fixed;
            top: 80px;
            right: 0;
            width: 250px;
            height: calc(100vh - 80px);
            background-color: #fff;
            box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
            padding-top: 20px;
            overflow-y: auto;
            border-left: 1px solid #ddd;
        }

        #sidebar img {
            width: 190px;
            border-radius: 50%;
            margin-bottom: 10px;
        }

        #sidebar .nav-link {
            color: #5f6368;
            font-size: 14px;
            padding: 10px;
            border-radius: 4px;
            transition: background 0.3s;
        }

        #sidebar .nav-link:hover, #sidebar .nav-link.active {
            background-color: #e8f0fe;
            color: #1967d2;
            font-weight: bold;
        }

        /* Main Content */
        main {
            padding: 20px;
        }
		
        .content-section {
            background: #fff;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }