@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
* {
    box-sizing: border-box;
}
#chat-container {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  /* 初期状態では非表示にする */
  display: none; /* これが最終的な初期display値になるように調整 */
  position: fixed;
  bottom: 30px;
  right: 20px;
  height: 73vh;
  width: 32vw;
  min-width: 420px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  flex-direction: column; /* flex-direction は保持 */
  font-family: "Noto Sans JP", sans-serif!important;
  z-index: 9999;
}
#wpfooter{position: relative!important;}
#chat-container.show {
  opacity: 1;
  transform: translateY(0);
  /* showクラスが付与されたらflex表示にする */
  display: flex;
}
.diagnosis-option-btn{
display: block;
text-align: left;
background: #fff;
    color: #2d8bd0;
    padding: 0.5rem 0.3rem;
    border-radius: 5px;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 1rem;
    border: solid 1px #0788c1;
}

    .progress-container {
        width: 100%;
        background-color: #e0e0e0;
        border-radius: 12px;
        overflow: hidden;
        margin: 10px 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        position: relative;
        height: 24px;
    }

    .progress-bar {
        height: 100%;
        background: linear-gradient(to right, #4CAF50, #8BC34A);
        border-radius: 12px;
        text-align: right;
        transition: width 1.5s ease-in-out;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    .progress-text {
        position: absolute;
        width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #333;
        font-weight: bold;
        font-size: 16px;
        text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
        text-align: center;
    }

    /* アニメーションの追加 */
    .progress-bar-start {
        width: 0%;
    }


/* .quick-link の見た目調整 */
#quick-questions {
  margin: 5px 0;
}

.faq-link {
  width: 100%;
  background: #fff;
  color: #2d8bd0;
  text-align: center;
  padding: 0.5rem 0.3rem;
  border-radius: 5px;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 1rem;
  border: solid 1px #0788c1;
}

#chat-launcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: white;
  padding: 0;
  border-radius: 24px;
  cursor: pointer;
  font-weight: bold;
  z-index: 9999;
  font-family: sans-serif;
  max-width: 150px;
}

#chat-header {
  background: #273A60;
  color: white;
  padding: 10px 14px;
  font-weight: bold;
  position: relative;
  display: flex; /* ヘッダー内の要素をflexで配置 */
  align-items: center; /* 垂直方向中央揃え */
  justify-content: space-between; /* 要素を左右に配置 */
}

/* ヘッダー内のボタンの基本スタイル */
#chat-header button {
  background: none;
  border: none;
  color: white;
  font-size: 16px; /* 通常のボタンのフォントサイズ */
  cursor: pointer;
  margin-left: 8px; /* 各ボタン間にスペース */
  padding: 4px 8px;
  border-radius: 4px;
}

/* ヘッダー内のクローズボタン */
#chat-header #close-btn {
  font-size: 18px; /* クローズボタンは少し大きく */
  margin-left: auto; /* 右端に寄せる */
}

#chat-container.recruit-mode {
  background-color: #fff;
}

#chat-container.recruit-mode #chat-header {
  background: #DE223F;
}

#chat-container.recruit-mode input,
#chat-container.recruit-mode textarea {
  background-color: #f9f4f5;
  border-color: #DE223F;
}

/* #chat-close は #close-btn に変更されたので、このセレクタは削除済み */

#chat-messages {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.from-user {
  flex-direction: row-reverse;
}

.diagnosis-options{
	margin-top: 10px;
}
.chat-bubble {
  max-width: 100%;
  font-size: clamp(1.4rem, 1.5vw, 1.5rem);
  background-color: #e7f0f6;
  padding: 1.2rem 1.5rem;
  font-size: 16px;
  line-height: 1.66;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.chat-btn-blue{
width: 100%;
  background: #fff;
  color: #2d8bd0;
  text-align: center;
  padding: 0.5rem 0.3rem;
  border-radius: 5px;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 1rem;
  border: solid 1px #0788c1;
}

.chat-link-btn{
	color: #0d6efd;
}

.chat-link-bosyu-btn{
	width: 80%;
    display: inline-block;
    padding: 12px 24px;
    margin-top: 15px; /* 上のテキストとの間隔を空ける */
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    background-color: #5B7BFF; /* 青色系のブランドカラー */
    border: none;
    border-radius: 50px; /* 角丸を強調 */
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 影で立体感を出す */
}

.chat-link-bosyu-btn:hover {
    background-color: #0056b3; /* 色を少し濃くする */
    transform: translateY(-3px); /* 少し上に浮き上がらせる */
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15); /* 影を強くする */
}

/* クリック時のスタイル */
.chat-link-bosyu-btn:active {
    background-color: #004085;
    transform: translateY(0); /* 元の位置に戻す */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.chat-btn-shindan{
	width: 80%;
    display: inline-block;
    padding: 12px 24px;
    margin-top: 15px; /* 上のテキストとの間隔を空ける */
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    background-color: #04AF7A; /* 青色系のブランドカラー */
    border: none;
    border-radius: 50px; /* 角丸を強調 */
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 影で立体感を出す */
}



.user-bubble {
  background: #FFEDED;
  box-shadow: 2px 2px 10px 4px rgba(0, 0, 0, 0.05);
  border-radius: 16px 16px 0px;
}

.bot-bubble {
  background-color: #e7f0f6;
  box-shadow: 2px 2px 10px 4px rgba(0, 0, 0, 0.05);
  border-radius: 16px 16px 16px 0;
}

.chat-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
}

#chat-input {
  /* 初期状態では非表示にする */
  display: none; /* これが最終的な初期display値になるように調整 */
  padding: 10px;
  background: white;
  border-top: 1px solid #ccc;
  flex-direction: row; /* flex-direction は保持 */
}

#chat-input input {
  flex: 1;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

#chat-input button {
  margin-left: 6px;
  padding: 8px 14px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.faq-links {
  color: #0788c1;
  text-decoration: underline;
}

.feedback-row {
  margin-left: 56px;
}

.chat-btn-red {
  margin: 4px 4px 0 0;
  padding: 4px;
  width: 60px;
  color: #fff;
  background: rgb(255, 102, 116);
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  border: none;
}

.chat-btn-green {
  margin: 4px 4px 0 0;
  padding: 4px;
  width: 60px;
  color: #fff;
  background: rgb(76, 175, 80);
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  border: none;
}
.chat-btn-gray {
  margin: 4px 4px 0 0;
  padding: 4px;
  width: 60px;
  color: #333;
  background: #eee;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  border: none;
}

.feedback-btn:hover {
  background-color: #d0e9ff;
}

.fade-in {
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-example-btn {
  color: rgb(13, 110, 253);
  text-decoration: underline;
  text-align: left;
  background: none;
  border: none;
  line-height: 1.66;
}

.example-block small {
  font-size: 0.6rem;
}
.privacy-policy-link {
    font-size: 0.6rem;
    margin-top: 5px;
    margin-bottom: 5px;
    display: inline-block;
    color: #1976d2;
    text-decoration: none;
}

#chat-footer{text-align: center; margin: 0 auto; padding: 2px 10px;}
#set-patient-button-in-chat, #set-recruit-button-in-chat{font-size: 12px; padding: 2px; border:solid 1px #dedede; background: #fff;}

/* chat-link-btn のスタイル（既存） */
.chat-link-btn {
  width: 100%;
  background: #fff;
  color: #2d8bd0;
  text-align: center;
  padding: 0.5rem 0.3rem;
  border-radius: 5px;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 1rem;
  border: solid 1px #0788c1;
}
.chat-link-btn:hover {
    background-color: #0788c1;
    color: white;
}

/* recruit-contactフローのボタンのスタイル */
.chat-row.feedback-row .chat-bubble button {
    /* 既存のチャットボタンのスタイルを上書きまたは追加 */
    margin-top: 10px; /* ボタン同士の間隔 */
    width: 100%; /* 全幅にするなど調整 */
    box-sizing: border-box; /* パディングやボーダーを含めて幅を計算 */
}

/* 画像が埋め込まれるメッセージのスタイル */
.chat-bubble img {
    max-width: 100%; /* 親要素に収まるように */
    height: auto; /* アスペクト比を維持 */
    display: block; /* 画像の下の余白をなくす */
    margin: 10px 0; /* 上下のマージン */
    border-radius: 5px; /* 角を丸くする */
}

/* 新しいローディングメッセージ用のスタイル (これを使用します) */
.chat-bubble.typing-loader-bubble { /* .chat-rowは不要で、バブル自体に直接適用 */
    background-color: #e0e0e0; /* ローダー用の背景色 */
    color: #e0e0e0; /* ローダー用の文字色 */
    border-radius: 20px; /* 角丸はそのまま */
    padding: 8px 15px;
    font-size: 16px;
    max-width: 70%;
    word-wrap: break-word;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    display: inline-flex; /* ドットを横並びにする */
    align-items: center;
    justify-content: center;
    /* 必要に応じて、ロード中のバブルの最小幅を設定 */
    min-width: 50px; 
}

/* タイピングインジケーターのCSS (ドットアニメーション) */
.typing-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #666;
    border-radius: 50%;
    animation: bounce 1s infinite ease-in-out;
    margin: 0 2px;
    opacity: 0.7;
}
/* 各ドットのアニメーション開始タイミングをずらす */
.chat-bubble .typing-indicator:nth-child(1) { animation-delay: 0s; }
.chat-bubble .typing-indicator:nth-child(2) { animation-delay: 0.15s; }
.chat-bubble .typing-indicator:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
}



/* ----------------------------------------------- */
/* ★★★ CSS修正ここまで ★★★ */
/* ----------------------------------------------- */

@media screen and (min-width: 480px) and (max-width: 767px){

	
}
@media screen and (max-width: 480px) {
  #chat-container {
    bottom: 0px;
    right: 0px;
    width: 100vw;
    height: 100dvh;
  }

  #chat-launcher {
    max-width: 120px;
  }
}


/* 固定ボタンコンテナ */
#fixed-buttons-container {
    position: fixed;
    bottom: -100px; /* 最初は画面外に隠す */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center; /* PC版で中央に配置 */
    gap: 15px; /* ボタン間の隙間 */
    padding: 10px;
    box-sizing: border-box;
    z-index: 1000; /* 他の要素より手前に表示 */
    transition: bottom 0.5s ease-out, transform 0.5s ease-out; /* アニメーション用 */
    flex-wrap: wrap; /* スマホでボタンが多すぎる場合に折り返す */
    padding: 15px;
}

/* ポップアップ時の表示状態 */
#fixed-buttons-container.show {
    bottom: 0;
    transform: translateY(0);
}

/* スクロールで隠れる状態（少しだけ下にずらす） */
#fixed-buttons-container.hide {
    bottom: -100px;
    transform: translateY(20px); /* 少し下に移動して隠れる */
}

/* 個々のボタン */
.fixed-button {
    flex: 1; /* スマホで横幅いっぱいに広がるように */
    max-width: 48%; /* スマホで2つ並べるための幅。gapを考慮して調整 */
    display: flex;
    column-gap: 8px;
    flex-direction: row; /* アイコンとテキストを縦に並べる */
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    background-color: #007bff; /* ボタンの色 */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
}

.fixed-button:hover {
    background-color: #0056b3;
    /*transform: translateY(-3px); sホバーで少し浮き上がる */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.fixed-button:active {
    transform: translateY(0); /* クリックで元に戻る */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.button-icon {
    width: 30px; /* アイコンのサイズ */
    height: 30px;

}
.btn-kyuujin p,.btn-kanjya p,.btn-questionnaire p{margin-bottom: 0;}
.btn-kyuujin {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  background-color: #fff;
  color: #E75785;
  border: 0.08rem solid #E75785;
  line-height: 1.1;
}

.btn-kanjya {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  background-color: #fff;
  color: #1ca987;
  border: 0.08rem solid #1ca987;
  line-height: 1.1;
}

.btn-questionnaire {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  background-color: #fff;
  color: #575ce7;
  border: 0.08rem solid #575ce7;
  line-height: 1.1;
}

.btn-kanjya:hover {background: #1ca987; color: #fff;}
.btn-kyuujin:hover {background: #E75785; color: #fff;}
.btn-questionnaire:hover {background: #575ce7; color: #fff;}
.btn-kanjya-text{font-size: 12px; background:#1ca987; color:#fff; padding: 2px 10px; display: inline; margin-bottom: 3px; position:absolute; top:6px;}
.btn-kyuujin-text{font-size: 12px; background:#E75785; color:#fff; padding: 2px 10px; display: inline; margin-bottom: 3px; position: absolute; top:6px;}
.btn-questionnaire-text{font-size: 12px; background:#575ce7; color:#fff; padding: 2px 10px; display: inline; margin-bottom: 3px; position: absolute; top:6px;}

/* PC版のスタイル調整 */
@media (min-width: 768px) {
    #fixed-buttons-container {
        justify-content: center; /* 中央揃えを維持 */
    }

    .fixed-button {
        flex: none; /* 横幅いっぱいにしない */
        /*width: 280px; /* PC版のボタン幅を固定 */
        font-size: 15px;
        padding: 15px 30px;
        flex-direction: row; /* アイコンとテキストを横に並べる */
    }

    .button-icon {
        margin-right: 10px; /* アイコンとテキストの間のスペース */
        margin-bottom: 0;
    }
}

/* ========================================
   フォーム入力関連のスタイル
   ======================================== */

/* フォーム入力行 */
.form-input-row {
    margin: 15px 0;
}

/* フォーム入力バブル */
.form-input-bubble {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    max-width: 100%;
}

/* フォーム入力フィールド共通 */
.form-input-field {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-input-field:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-input-field:valid {
    border-color: #4caf50;
}

.form-input-field:invalid {
    border-color: #d32f2f;
}

select.form-input-field {
    padding: 0 10px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

/* テキストエリア */
.form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

/* セレクトボックス */
select.form-input-field {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* バリデーションメッセージ */
.form-input-validation {
    color: #d32f2f;
    font-size: 13px;
    margin-top: 8px;
    padding: 8px 12px;
    background: #ffebee;
    border-radius: 6px;
    display: none;
    animation: fadeIn 0.3s ease;
}

/* フォームアクションボタン */
.form-input-actions {
    margin-top: 15px;
    justify-content: center;
}

.form-submit-btn {
    width: 100%;
    padding: 5px;
    font-size: 16px;
}
.form-submit-btn-gray {
    width: 100%;
    font-size: 16px;
    padding: 5px;
}

/* フォーム確認画面 */
.form-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
    border-left: 4px solid #4a90e2;
}

.form-summary-item {
    margin-bottom: 12px;
    padding: 10px;
    background: white;
    border-radius: 6px;
    line-height: 1.6;
}

.form-summary-item strong {
    color: #333;
    display: block;
    min-width: 120px;
    font-weight: 600;
}

/* 入力中のアニメーション */
.form-input-field:focus {
    animation: inputFocus 0.3s ease;
}

@keyframes inputFocus {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* フォームボタンのホバー効果 */
.form-input-actions button {
    transition: all 0.3s ease;
}

.form-input-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-input-actions button:active {
    transform: translateY(0);
}

/* モバイル対応 */
@media (max-width: 600px) {
    .form-input-bubble {
        padding: 15px;
        max-width: 95%;
    }
    
    .form-input-field {
        font-size: 16px; /* iOS のズーム防止 */
    }
    
    .form-input-actions {
        flex-direction: column;
    }
    
    .form-input-actions button {
        width: 100%;
    }
    
    .form-summary-item strong {
        display: block;
        margin-bottom: 5px;
    }
}

/* プレースホルダーのスタイル */
.form-input-field::placeholder {
    color: #999;
    opacity: 1;
}

.form-input-field:focus::placeholder {
    opacity: 0.5;
}

/* 入力エラー時のアニメーション */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

.form-input-field:invalid:not(:placeholder-shown) {
    animation: shake 0.5s ease;
}

/* 成功時のバリデーション表示
.form-input-field:valid:not(:placeholder-shown) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%234caf50' d='M7 10l2 2 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}*/

/* 日付入力フィールドのスタイル */
input[type="date"].form-input-field {
    position: relative;
}

input[type="date"].form-input-field::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

input[type="date"].form-input-field::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* フェードインアニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-input-validation {
    animation: fadeIn 0.3s ease;
}

/* ローディング中のスタイル */
.form-input-field:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}

/* 必須マーク */
.form-required-mark {
    color: #d32f2f;
    margin-left: 4px;
    font-weight: bold;
}

/* フォーム進捗バー */
.form-progress-container {
    margin: 10px 0;
    padding: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-progress-container .progress-container {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    height: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.form-progress-container .progress-bar {
    height: 100%;
    background: linear-gradient(to right, #4CAF50, #8BC34A);
    border-radius: 12px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.form-progress-container span {
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* フォーム進捗バー（固定表示） */
.form-progress-fixed {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.form-progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.progress-bar-container {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    height: 6px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(to right, #4CAF50, #8BC34A);
    border-radius: 12px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}