.oauth-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 320px;
    margin: 1rem auto;
}

.oauth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.6rem 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.08s ease, box-shadow 0.08s ease;
    border: 1px solid #e0e0e0;
    color: #202124;
    background: transparent;
    width: 100%;
}

.oauth-btn:active { transform: translateY(1px); }
.oauth-btn:hover { box-shadow: 0 4px 10px rgba(10,10,10,0.04); }

.oauth-btn .icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
    background: transparent;
}
