/* Staff List - Classic WoW Theme */

.staff-section {
	background: #1a1a1a;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6),
	            inset 0 1px 0 rgba(255, 255, 255, 0.03);
	border: 1px solid #2a2a2a;
	position: relative;
}

/* Staff Header */
.staff-header {
	padding: 12px 16px;
	background: #252525;
	border-bottom: 1px solid #333;
	position: relative;
}

.staff-header-left {
	display: flex;
	align-items: center;
	gap: 8px;
}

.staff-header-left i {
	font-size: 16px;
	color: #c9a860;
}

.staff-title {
	font-size: 14px;
	font-weight: 600;
	color: #e5cc9f;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: 'Roboto', sans-serif;
}

.staff-title i {
	color: #c9a860;
	font-style: normal;
}

/* Staff Container */
.staff-container {
	padding: 16px;
}

/* Staff Member Row */
.staff-member {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	background: #202020;
	border: 1px solid #2a2a2a;
	border-radius: 3px;
	margin-bottom: 10px;
	transition: all 0.2s ease;
}

.staff-member:last-child {
	margin-bottom: 0;
}

.staff-member:hover {
	background: #252525;
	border-color: #333;
	transform: translateX(3px);
}

/* Staff Avatar */
.staff-avatar {
	position: relative;
	flex: 0 0 45px;
}

.staff-avatar img {
	width: 45px;
	height: 45px;
	border-radius: 3px;
	border: 2px solid #333;
	display: block;
	background: #1a1a1a;
}

/* Status Indicator (dot on avatar) */
.status-indicator {
	position: absolute;
	bottom: -2px;
	right: -2px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid #202020;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

.status-indicator.online {
	background: #28a745;
	box-shadow: 0 0 8px rgba(40, 167, 69, 0.6);
}

.status-indicator.offline {
	background: #6c757d;
}

/* Staff Info */
.staff-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.staff-name {
	font-size: 13px;
	font-weight: 600;
	color: #e5cc9f;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.staff-role {
	display: inline-block;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 3px 8px;
	border-radius: 2px;
	text-transform: uppercase;
	width: fit-content;
}

.staff-role.admin {
	background: #8b2e2e;
	color: #ffb3b3;
	border: 1px solid #a63939;
}

.staff-role.mod {
	background: #2e5c8b;
	color: #b3d4ff;
	border: 1px solid #3970a6;
}

.staff-role.gm {
	background: #5c8b2e;
	color: #d4ffb3;
	border: 1px solid #70a639;
}

/* Staff Status */
.staff-status {
	flex: 0 0 auto;
}

.status-badge {
	font-size: 10px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 2px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	white-space: nowrap;
}

.status-badge.online {
	background: rgba(40, 167, 69, 0.15);
	color: #5cb85c;
	border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-badge.offline {
	background: rgba(108, 117, 125, 0.15);
	color: #999;
	border: 1px solid rgba(108, 117, 125, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
	.staff-container {
		padding: 14px;
	}

	.staff-member {
		padding: 10px;
		gap: 10px;
	}

	.staff-avatar img {
		width: 40px;
		height: 40px;
	}

	.staff-avatar {
		flex: 0 0 40px;
	}

	.staff-name {
		font-size: 12px;
	}

	.staff-role {
		font-size: 8px;
		padding: 2px 6px;
	}

	.status-badge {
		font-size: 9px;
		padding: 3px 8px;
	}
}

@media (max-width: 480px) {
	.staff-container {
		padding: 12px;
	}

	.staff-member {
		padding: 8px;
		gap: 8px;
	}

	.staff-avatar img {
		width: 38px;
		height: 38px;
	}

	.staff-avatar {
		flex: 0 0 38px;
	}

	.staff-name {
		font-size: 11px;
	}

	.staff-role {
		font-size: 8px;
		padding: 2px 6px;
	}

	.status-badge {
		font-size: 9px;
		padding: 3px 7px;
	}

	.status-indicator {
		width: 10px;
		height: 10px;
	}
}

/* Animation */
.staff-member {
	animation: fadeInLeft 0.4s ease-out;
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(10px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.staff-member:nth-child(1) { animation-delay: 0.1s; }
.staff-member:nth-child(2) { animation-delay: 0.15s; }
.staff-member:nth-child(3) { animation-delay: 0.2s; }
.staff-member:nth-child(4) { animation-delay: 0.25s; }
.staff-member:nth-child(5) { animation-delay: 0.3s; }

/* Status indicator pulse animation */
.status-indicator.online {
	animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
	0%, 100% {
		box-shadow: 0 0 8px rgba(40, 167, 69, 0.6);
	}
	50% {
		box-shadow: 0 0 12px rgba(40, 167, 69, 0.9);
	}
}


