/* ============================================================
   Whochat page - additive styles only.
   Loaded alongside style.css, not replacing it.
   ============================================================ */

.wc-section { margin-bottom: 30px; }
.wc-section h2 {
	color: #e8eff4;
	font-size: 20px;
	font-style: italic;
	margin: 0 0 14px;
	padding-bottom: 8px;
	border-bottom: 1px solid #14344d;
}

/* ---- Status legend ---- */
.wc-legend {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 20px;
	background: #0b1a2c;
	border: 1px solid #14344d;
	border-radius: 6px;
	padding: 14px 18px;
	margin-bottom: 10px;
	font-size: 16px;
}
.wc-legend span { font-weight: bold; }
.wc-online-count {
	text-align: center;
	color: #a9bdc9;
	font-size: 16px;
	margin-bottom: 20px;
}
.wc-online-count strong { color: #e8eff4; font-size: 15px; }

/* ---- Status colors (role legend) ---- */
.wc-owner    { color: #FF4444; }
.wc-mod      { color: #4DB8FF; }
.wc-room-owner { color: #7DDE7D; }
.wc-room-mod { color: #BF5FFF; }
.wc-guest    { color: #a9bdc9; }

/* ---- Room cards ---- */
.wc-room-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}
.wc-room-card {
	background: #0b1a2c;
	border: 1px solid #14344d;
	border-radius: 6px;
	padding: 18px;
	text-align: center;
}
.wc-room-name {
	display: block;
	color: #e8eff4;
	font-size: 15px;
	font-weight: bold;
	text-decoration: none;
	margin-bottom: 6px;
}
.wc-room-name:hover { color: #44b2f1; }
.wc-room-status {
	font-size: 12px;
}