.ff-dashboard-wrapper {
	display: flex;
	gap: 30px;
	margin: 30px 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.ff-dashboard-sidebar {
	width: 260px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px;
	flex-shrink: 0;
}

.ff-vendor-profile {
	text-align: center;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e2e8f0;
}

.ff-vendor-avatar {
	width: 64px;
	height: 64px;
	background: #3b82f6;
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	margin: 0 auto 12px;
}

.ff-dashboard-nav a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	color: #475569;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 500;
	margin-bottom: 4px;
	transition: all 0.2s ease;
}

.ff-dashboard-nav a:hover,
.ff-dashboard-nav a.active {
	background: #f1f5f9;
	color: #0f172a;
}

.ff-dashboard-content {
	flex: 1;
}

.ff-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 20px;
}

.ff-metrics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.ff-metric-card {
	text-align: center;
}

.ff-metric-title {
	font-size: 13px;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

.ff-metric-value {
	font-size: 28px;
	font-weight: 700;
	color: #0f172a;
	margin-top: 8px;
}

.ff-table {
	width: 100%;
	border-collapse: collapse;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
}

.ff-table th,
.ff-table td {
	padding: 16px 20px;
	text-align: left;
	border-bottom: 1px solid #e2e8f0;
}

.ff-table th {
	background: #f8fafc;
	font-weight: 600;
	color: #475569;
}

.ff-status-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}

.status-approved,
.status-publish {
	background: #dcfce7;
	color: #166534;
}

.status-pending {
	background: #fef9c3;
	color: #854d0e;
}

.status-suspended {
	background: #fee2e2;
	color: #991b1b;
}

.ff-btn {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: none;
}

.ff-btn-primary {
	background: #2563eb;
	color: #ffffff;
}

.ff-btn-primary:hover {
	background: #1d4ed8;
}

.ff-alert {
	padding: 14px 20px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.ff-alert-error {
	background: #fee2e2;
	color: #991b1b;
}

.ff-alert-success {
	background: #dcfce7;
	color: #166534;
}

.ff-alert-warning {
	background: #fef9c3;
	color: #854d0e;
}

/* Form Field Styling */
.ff-form-row-group {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.ff-form-row-group .ff-form-row {
	margin-bottom: 0;
	flex: 1;
}

.ff-form-row {
	margin-bottom: 20px;
}

.ff-form-row label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	color: #334155;
}

.ff-input-text,
.ff-input-textarea,
.ff-select {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	font-size: 14px;
	color: #1e293b;
	box-sizing: border-box;
}

.ff-input-text:focus,
.ff-input-textarea:focus,
.ff-select:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

@media (max-width: 768px) {
	.ff-dashboard-wrapper {
		flex-direction: column;
		gap: 15px;
		margin: 15px 0;
	}

	.ff-dashboard-sidebar {
		width: 100%;
		box-sizing: border-box;
		padding: 16px;
	}

	.ff-mobile-menu-toggle {
		display: block !important;
	}

	.ff-dashboard-nav {
		display: none;
		flex-wrap: wrap;
		gap: 8px;
	}

	.ff-dashboard-nav.ff-nav-open {
		display: flex;
	}

	.ff-dashboard-nav a {
		flex: 1 1 calc(50% - 8px);
		justify-content: center;
		margin-bottom: 0;
	}

	.ff-form-row-group {
		flex-direction: column;
		gap: 15px;
	}

	.ff-card {
		padding: 16px;
	}

	.ff-metrics-grid {
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}

	.ff-table {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.ff-table th,
	.ff-table td {
		white-space: nowrap;
		padding: 12px 15px;
	}
}

@media (max-width: 480px) {
	.ff-dashboard-nav a {
		flex: 1 1 100%;
		justify-content: flex-start;
	}

	.ff-metrics-grid {
		grid-template-columns: 1fr;
	}
}