/* Ek Stiller */
.button-allowed {
	cursor: pointer;
	opacity: 1;
}

.button-not-allowed {
	cursor: not-allowed;
	opacity: 0.6;
}

.recent-activity-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
	margin-bottom: 8px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 5px;
	border-left: 4px solid #7cbd50;
}

.recent-activity-user {
	font-weight: bold;
	color: #531f1e;
	flex: 1;
}

.recent-activity-action {
	color: #7cbd50;
	font-weight: bold;
	flex: 1;
	text-align: center;
}

.recent-activity-time {
	color: #888;
	font-size: 0.9em;
	flex: 1;
	text-align: right;
}

.chat-message-system {
	background: #fff3cd;
	color: #856404;
	padding: 8px 12px;
	margin-bottom: 5px;
	border-radius: 5px;
	border: 1px solid #ffeaa7;
}

.chat-message-user {
	background: rgba(255, 255, 255, 0.8);
	padding: 8px 12px;
	margin-bottom: 5px;
	border-radius: 5px;
}

.chat-username {
	font-weight: bold;
	color: #531f1e;
}

#live-chat-content {
	max-height: 200px;
	overflow-y: auto;
	padding: 10px;
	background: #f8d1a1;
}

.loader-text h1 {
	transition: color 0.3s ease;
}