/*-------------------------------------------------*/
/*  SNS Login
/*-------------------------------------------------*/
.btn-sns-box {
  width: 48px;
  height: 48px;
  border: 1px solid #333;
  border-radius: 8px;
  align-items: center;
}

/* Discordの画像自体のサイズを強制 */
img.discord-icon {
  width: 30px !important;
  height: 24px !important;
  display: block;
  object-fit: contain; /* 比率を維持 */
}

/* Welcomeページのコンテナ */
.container-welcome {
  max-width: 600px;
  margin: 50px auto;
  padding: 40px;
  background: #1a1a1a; /* ダークモード風 */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  text-align: center;
  font-family: 'google-sans', sans-serif;
}

/* ユーザー名のハイライト */
.container-welcome h1 { font-size: 2rem;}

/* メールアドレスのスタイル */
.container-welcome p {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* ログアウトボタンなどの装飾 */
.logout-link {
    display: inline-block;
    margin-top: 20px;
    color: #4285F4;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid #4285F4;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.logout-link:hover {
    background: #4285F4;
    color: #fff;
}