
        .body1 {
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .navbar {
            background: white;
            border-radius: 10px;
            padding: 10px 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 100%; /* Adjust width as needed */
            max-width: 1200px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .navbar ul {
            list-style: none;
            display: flex;
            gap: 15px;
            margin: 0;
            padding: 0;
            flex-wrap: wrap; /* Allow items to wrap on smaller screens */
        }
        
        .navbar li {
            font-size: 14px;
            color: #666;
        }
        .navbar li.active {
            color: #007bff;
            font-weight: bold;
        }
        .navbar .actions {
            display: flex;
            gap: 10px;
            font-size: 14px;
            color: #666;
        }
        .navbar .actions span {
            cursor: pointer;
        }
        /* Media Queries */
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                align-items: flex-start;
            }
            .navbar ul {
                width: 100%;
                justify-content: flex-start;
            }
            .navbar .actions {
                margin-top: 10px;
            }
        }
        