/* ==============================
メンバー一覧(オンライン表示強化)
============================== */
#memberList li {
background: #f2f6ff;
border-left: 5px solid #4ba3ff;
padding: 12px;
margin: 10px 0;
border-radius: 12px;
cursor: pointer;
display: flex;
align-items: center;
gap: 12px;
justify-content: space-between; /* ←オンライン文字を右寄せ */
}
.member-icon {
width: 26px;
height: 26px;
border-radius: 50%;
background: #4ba3ff;
position: relative;
}
/* バッジ(見やすく) */
.member-icon::after {
content: "";
position: absolute;
bottom: -3px;
right: -3px;
width: 12px;
height: 12px;
border-radius: 50%;
border: 2px solid white;
}
/* 緑がオンライン */
.online .member-icon::after { background: #22dd77; }
/* 赤がオフライン */
.offline .member-icon::after { background: #ff5d5d; }
/* 「🟢オンライン / 🔴オフライン」文字 */
.status-text {
font-size: 14px;
color: #444;
opacity: 0.8;
}
/* ==============================
かわいい退出ボタン
============================== */
.exit-btn.cute {
padding: 10px 16px;
border-radius: 30px;
background: linear-gradient(135deg, #ff9bb5, #ff6b8c);
color: white;
border: none;
cursor: pointer;
font-size: 15px;
font-weight: bold;
box-shadow: 0 4px 12px rgba(255, 100, 140, 0.4);
transition: 0.25s;
}
.exit-btn.cute:hover {
transform: scale(1.07);
background: linear-gradient(135deg, #ff6b8c, #ff3b6f);
}