/* SIMG OAuth Button Styles */

.simg-oauth-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#simg-oauth-button {
    background-color: var(--custom-color, #ffffff);
    /* White background or custom */
    color: var(--custom-text-color, #333333);
    /* Dark text or custom */
    border: 1px solid #e0e0e0;
    /* Subtle border */
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Space between text and logo */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    max-width: 100%;
}

#simg-oauth-button img {
    height: 30px;
    /* Adjust logo height */
    width: auto;
    display: block;
}

#simg-oauth-button:hover {
    opacity: 0.7;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#simg-oauth-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    background-color: #f0f0f0;
}

#simg-oauth-button:focus {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
}