/* Dashboard Styles */
.benue-portfolio-dashboard {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	margin-bottom: 20px;
}

.benue-portfolio-add-form {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 6px;
	margin-bottom: 30px;
	border: 1px solid #eee;
}

.benue-form-row {
	margin-bottom: 15px;
}

.benue-form-row label {
	display: block;
	font-weight: 600;
	margin-bottom: 5px;
	color: #333;
}

.benue-form-row input[type="text"],
.benue-form-row textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.benue-image-upload-wrapper {
	display: flex;
	align-items: center;
	gap: 15px;
}

.benue-image-preview {
	width: 100px;
	height: 100px;
	background: #eee;
	border: 2px dashed #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 4px;
	overflow: hidden;
}

.benue-image-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.benue-placeholder-text {
	font-size: 12px;
	color: #777;
	text-align: center;
	padding: 5px;
}

.benue-feedback-msg {
	margin-left: 15px;
	font-weight: 600;
}
.benue-feedback-msg.success { color: green; }
.benue-feedback-msg.error { color: red; }

/* Dashboard List Styles */
.benue-portfolio-items-list h4 {
	margin-bottom: 15px;
}

.benue-portfolio-item-card {
	display: flex;
	align-items: center;
	padding: 15px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 6px;
	margin-bottom: 10px;
	position: relative;
}

.benue-portfolio-item-card img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 4px;
	margin-right: 15px;
}

.benue-portfolio-item-details strong {
	display: block;
	font-size: 16px;
	margin-bottom: 5px;
}

.benue-portfolio-item-details p {
	margin: 0;
	color: #666;
	font-size: 14px;
}

.benue-delete-item-btn {
	position: absolute;
	right: 15px;
	top: 15px;
	background: #ff4d4d;
	color: white;
	border: none;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 1;
}

.benue-delete-item-btn:hover {
	background: #cc0000;
}

/* Public Profile Grid Styles */
.benue-public-portfolio {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 2px solid #eee;
	width: 100%;
	clear: both;
}

.benue-public-portfolio h3 {
	margin-bottom: 25px;
	font-size: 24px;
	text-align: center;
}

.benue-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.benue-portfolio-grid-item {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	transition: transform 0.3s ease;
}

.benue-portfolio-grid-item:hover {
	transform: translateY(-5px);
}

.benue-portfolio-img-wrap {
	height: 200px;
	overflow: hidden;
}

.benue-portfolio-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.benue-portfolio-grid-item:hover .benue-portfolio-img-wrap img {
	transform: scale(1.05);
}

.benue-portfolio-content {
	padding: 20px;
}

.benue-portfolio-content h4 {
	margin: 0 0 10px 0;
	font-size: 18px;
}

.benue-portfolio-content p {
	margin: 0;
	color: #555;
	font-size: 14px;
	line-height: 1.5;
}