\newtheoremstyle 内の幅を変更する

\newtheoremstyle 内の幅を変更する

網掛けのボックスで囲まれた新しい定理環境を定義しました。コードは次のようになります。

\usepackage{xcolor}
\usepackage{amsthm}
\usepackage{framed}
\colorlet{shadecolor}{gray!50}
\newtheoremstyle{mythm}
    {0.3\topsep} % space above
    {0.3\topsep} % space below
    {} % body font
    {} % indentation
    {\bfseries} % theorem head font
    {.} % punctuation after theorem head
    { } % space after theorem head
    {} % head spec

\theoremstyle{mythm}
\newtheorem{theorem}{משפט}
\renewenvironment{thm}
   {\begin{shaded}\begin{theorem}}
   {\end{theorem}\end{shaded}}

(私は定理を表すためにヘブライ語の משפט を使用しています)。ここで、thm 環境を使用すると、次のようになります。

ここに画像の説明を入力してください

ご覧のとおり、ボックス内の線の幅は通常の線の幅と一致しています。私の質問は、どのように再定義すれば、網掛けのボックス自体通常の線の幅と一致しますか?
newtheoremstyle の幅パラメータが見つからなかったので、助けていただければ幸いです。

関連情報