
        body {
            display: flex;
            flex-direction: column;
            align-items: center; /* Center horizontally */
            min-height: 100vh;
            margin: 0;
            font-family: 'Mitr', sans-serif;
            background-color: white;
        }
        
        .top-bar {
            width: 100%;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 10px 20px;
            background-color: white;
            box-sizing: border-box;
        }

        .container {
            text-align: center;
            width: 90%;
            max-width: 600px;
            max-height: 90%;
            margin-top: 20px;
            flex: 1; /* Allow container to grow and take up remaining space */
            display: flex; /* Add flexbox to container */
            flex-direction: column; /* stack logo and search box */
            justify-content: center; /* center vertically inside the container */
        }
        
        .logo-text {
            font-weight: bold;
            font-size: 2.5rem;
        }
        .blue {
            color: #4285F4; /* Blue */
        }
        .red {
            color: #EA4335; /* Red */
        }
        .yellow {
            color: #FBBC05; /* Yellow */
        }
        .green {
            color: #34A853; /* Green */
        }
        
        .text-box {
            width: 100%;
            max-width: 600px;
        }
        .loading-message {
            display: none; /* Hidden by default */
            text-align: center;
        }
        .profile-picture {
            width: 100px; /* Adjust the width as needed */
            height: 100px; /* Adjust the height as needed */
            border-radius: 50%; /* Makes the image round */
            object-fit: cover; /* Ensures the image fills the circle without distortion */
        }
        .google-login-button {
            display: inline-flex;
            align-items: center;
            background-color: #ffffff;
            color: #4285f4;
            border: 1px solid #dadce0;
            border-radius: 4px;
            padding: 8px 12px;
            font-size: 20px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s, box-shadow 0.3s;
        }

        .google-login-button:hover {
            background-color: #f8f9fa;
            box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
        }

        .google-login-button img {
            height: 32px;
            margin-right: 8px;
        }

        @media (max-width: 480px) {
            /* Styles for even smaller screens */
            .logo-text {
                font-size: 2rem;
            }
        
        }