/* General page styling */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 50px;
    background-color: #FFFFFF;
}

/* Google login button styling */
.google-login-btn {
    background-color: #4285F4;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.google-login-btn:hover {
    background-color: #357ae8;
}

/* Logout button styling */
.logout-btn {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.logout-btn:hover {
    background-color: #d32f2f;
}