.header {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 10px 20px;
    background-color: #f8f9fa;
}

.header .btn-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #007bff;
    color: #007bff;
    font-size: 1.5rem;
    text-decoration: none;
    background-color: #fff;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.header .btn-circle:hover {
    background-color: #007bff;
    color: white;
}

/* .content-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
} */

.google-signin-container {
    display: flex;
    justify-content: center;
    margin-top: 10px; /* Small margin above the Google Sign-In button */
}

#g_id_signin {
    width: max-content; /* Adjust the width of the Google Sign-In button */
    text-align: center;
}