
body {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	justify-content: center;
	align-items: center;
}

.eRoomPage {
	background: white;
	padding: 40px;
	border-radius: 30px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	text-align: center;
	max-width: 700px;
	width: 90%;
}

.eRoomPage h1 {
	color: #333;
	font-size: 32px;
	margin-bottom: 30px;
}

.eLoader {
	margin: 40px 0;
	text-align: center;
}

.eLoader p {
	color: #666;
	margin-top: 20px;
	font-size: 16px;
}

.eSpinner {
	width: 50px;
	height: 50px;
	border: 5px solid #f3f3f3;
	border-top: 5px solid #667eea;
	border-radius: 50%;
	margin: 0 auto;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.eLinksContainer {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin: 20px 0;
}

.eLinkCard {
	flex: 1;
	padding: 20px;
	border-radius: 15px;
	background: #f5f5f5;
	text-align: left;
}

.eLinkCard.teacher {
	border-left: 4px solid #ff4444;
}

.eLinkCard.student {
	border-left: 4px solid #00aa00;
}

.eLinkCard h3 {
	margin-bottom: 15px;
	color: #333;
	font-size: 18px;
}

.eLinkCard .vLink {
	display: block;
	padding: 12px;
	background: white;
	border-radius: 8px;
	font-family: monospace;
	font-size: 12px;
	word-break: break-all;
	margin-bottom: 15px;
	color: #666;
	border: 1px solid #ddd;
}

.eTeacherLink {
	display: inline-block;
	padding: 10px 20px;
	background: #ff4444;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: bold;
	transition: background 0.2s;
}

.eTeacherLink:hover {
	background: #ff6666;
}

.eCopyButton {
	background: #00aa00;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
	transition: background 0.2s;
	width: 100%;
}

.eCopyButton:hover {
	background: #00cc00;
}

.eCopyButton:active {
	transform: scale(0.95);
}

.eCopyMessage {
	color: #00aa00;
	font-size: 14px;
	margin-top: 10px;
	opacity: 0;
	transition: opacity 0.3s;
}

.eCopyMessage.show {
	opacity: 1;
}

