/**
 * Dashboard Tabs Styles
 * Styles specific to dashboard tab content
 */

/* ===== Facilitations Tab ===== */
.nef-facilitator-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.nef-stat-card {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
	padding: 25px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nef-stat-icon {
	font-size: 32px;
	margin-bottom: 10px;
}

.nef-stat-value {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 5px;
}

.nef-stat-label {
	font-size: 14px;
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nef-events-section {
	margin-bottom: 40px;
}

.nef-events-section h3 {
	font-size: 22px;
	margin-bottom: 20px;
	color: #1f2937;
}

.nef-events-list {
	display: block;
}

/* ===== Manage Events Tab ===== */
.nef-quick-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	flex-wrap: wrap;
	gap: 15px;
}

.nef-quick-actions h3 {
	margin: 0;
	font-size: 24px;
	color: #1f2937;
}

.nef-action-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.nef-events-table {
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.nef-btn-small {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 4px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.nef-btn-small.nef-btn-primary {
	background: #667eea;
	color: #ffffff;
}

.nef-btn-small.nef-btn-primary:hover {
	background: #5568d3;
}

.nef-btn-small.nef-btn-secondary {
	background: #e5e7eb;
	color: #1f2937;
}

.nef-btn-small.nef-btn-secondary:hover {
	background: #d1d5db;
}

/* ===== Profile Tab ===== */
.nef-profile-avatar {
	border-radius: 50%;
	border: 4px solid #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== Responsive Design for Tabs ===== */
@media (max-width: 768px) {
	.nef-events-table {
		overflow-x: auto;
	}

	.nef-events-table table {
		min-width: 600px;
	}
}
