/* ログインボタン */
.UpculRAG_GoogleLoginButton {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4285f4;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    text-align: center;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.UpculRAG_GoogleLoginButton:hover {
    background-color: #357ae8;
}

.UpculRAG_GoogleLoginButton:active {
    background-color: #2a65d3;
}

/* ログアウトボタン */
.UpculRAG_GoogleLogoutButton {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #757575;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    text-align: center;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.UpculRAG_GoogleLogoutButton:hover {
    background-color: #f5f5f5;
    color: #333333;
}

.UpculRAG_GoogleLogoutButton:active {
    background-color: #e0e0e0;
    color: #212121;
}


/* サイドバー用ログイン管理コンポーネント */
.UpculRAG_GoogleLoginComponent {
    display: grid;
    gap: 10px;
    
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    background-color: #f9f9f9;

    .ContentBox {
        display: grid;
        gap: 5px;
        line-height: 1;

        .Message {}
        .UserName {
            font-size: 1.1em;
            font-weight: bold;
        }
        .UserEmail {
            font-size: 0.9em;
            font-weight: 300;
        }
    }
    .ButtonBox {}
}