   body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: radial-gradient(circle, #cfe0f5, #89aee0);
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .content {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .login-box {
            background: #fff;
            border-radius: 15px;
            padding: 20px;
            width: 90%;
            min-width: 350px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .user-types {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
        }

        .user-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #ddd;
            transition: background 0.3s;
        }

        .user-btn.active {
            background-color: #4CAF50;
            color: #fff;
        }

        /* Navbar */
        .navbar {
            background-color: #f8f9fa;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .navbar img {
            height: 50px;
            width:50px;
        }

        .navbar .menu-desktop {
            display: flex;
            gap: 20px;
            list-style: none;
            margin: 0;
        }

        .sidebar {
            position: fixed;
            top: 0;
            right: -250px;
            width: 250px;
            height: 100%;
            background: #fff;
            box-shadow: -2px 0 5px rgba(0,0,0,0.2);
            transition: right 0.3s ease;
            padding: 20px;
            z-index: 999;
        }

        .sidebar.active {
            right: 0;
        }

        .sidebar ul {
            list-style: none;
            padding: 0;
        }

        .sidebar ul li {
            padding: 15px 0;
            border-bottom: 1px solid #ddd;
            cursor: pointer;
        }

        .close-sidebar {
            font-size: 28px;
            cursor: pointer;
            display: block;
            text-align: right;
        }

        .bottom-content {
            
            padding: 20px 0;
            text-align: center;
            
        }


        @media (min-width: 768px) {
            .navbar i#sidebarOpen {
                display: none;
            }
            .sidebar {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .navbar .menu-desktop {
                display: none;
            }
        }