.vrj-app {
	display: flex;
	width: 100%;
	max-width: 900px;
	min-height: 480px;
	margin: 20px 0;
	border-radius: 10px;
	overflow: hidden;
	background: #313338;
	color: #dbdee1;
	font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

.vrj-sidebar {
	width: 220px;
	background: #2b2d31;
	padding: 14px 8px;
	flex-shrink: 0;
}

.vrj-sidebar-title {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #949ba4;
	padding: 0 8px 10px;
	font-weight: 600;
}

.vrj-channel-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vrj-channel-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	margin-bottom: 2px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 15px;
	color: #949ba4;
	transition: background 0.12s ease, color 0.12s ease;
}

.vrj-channel-item:hover {
	background: #35373c;
	color: #dbdee1;
}

.vrj-channel-item.active {
	background: #3f4248;
	color: #fff;
}

.vrj-channel-icon {
	font-size: 14px;
}

.vrj-main {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.vrj-topbar {
	height: 48px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	background: #313338;
	border-bottom: 1px solid #26282c;
	font-size: 14px;
	font-weight: 500;
}

.vrj-leave-btn {
	background: #da373c;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 6px 14px;
	font-size: 13px;
	cursor: pointer;
}

.vrj-leave-btn:hover {
	background: #a12828;
}

.vrj-meet-container {
	flex: 1;
	background: #1e1f22;
	min-height: 400px;
}

.vrj-meet-container iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.vrj-login-required {
	padding: 20px;
	background: #2b2d31;
	color: #dbdee1;
	border-radius: 8px;
	text-align: center;
}

.vrj-login-required a {
	color: #00a8fc;
}

@media (max-width: 600px) {
	.vrj-app {
		flex-direction: column;
		min-height: unset;
	}
	.vrj-sidebar {
		width: 100%;
	}
	.vrj-meet-container {
		min-height: 320px;
	}
}
