/**
 * Vibroponic Space Platform – Stili Modulo Users
 *
 * @package VibroponicSpace
 */

/* =========================================================
   Profilo Utente
   ========================================================= */
.vsp-profile-container {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	margin-bottom: 2rem;
}

.vsp-profile-header {
	position: relative;
}

.vsp-profile-cover {
	height: 200px;
	width: 100%;
}

.vsp-profile-avatar-wrapper {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid #fff;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
}

.vsp-profile-body {
	padding: 60px 2rem 2rem;
	text-align: center;
}

.vsp-profile-name {
	margin: 0;
	font-size: 2rem;
	color: #1a3a5c;
}

.vsp-profile-profession {
	font-size: 1.1rem;
	color: #646970;
	margin: 0.5rem 0 1rem;
}

.vsp-profile-level-badge {
	margin-bottom: 2rem;
}

.vsp-profile-content {
	text-align: left;
	max-width: 800px;
	margin: 0 auto;
}

.vsp-profile-section {
	margin-bottom: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid #eee;
}

.vsp-profile-section h3 {
	font-size: 1.2rem;
	color: #1a3a5c;
	margin-bottom: 1rem;
}

.vsp-skills-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.vsp-skill-tag {
	background: #e9ecef;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.9rem;
	color: #495057;
}

.vsp-social-links {
	display: flex;
	gap: 15px;
}

.vsp-social-link {
	color: #2563a8;
	text-decoration: none;
	font-weight: 600;
}

.vsp-social-link:hover {
	text-decoration: underline;
}

/* =========================================================
   Dashboard
   ========================================================= */
.vsp-dashboard-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
}

.vsp-rank-display {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
}

.vsp-rank-name {
	font-size: 1.5rem;
	font-weight: bold;
	color: #00c9a7;
}

.vsp-level-number {
	color: #646970;
}

.vsp-xp-bar {
	height: 10px;
	background: #e9ecef;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 0.5rem;
}

.vsp-xp-progress {
	height: 100%;
	background: #00c9a7;
	transition: width 0.3s ease;
}

.vsp-xp-text {
	font-size: 0.85rem;
	color: #646970;
}

.vsp-action-list {
	list-style: none;
	padding: 0;
}

.vsp-action-list li {
	margin-bottom: 0.5rem;
}

.vsp-action-list a {
	color: #2563a8;
	text-decoration: none;
}

/* =========================================================
   Form
   ========================================================= */
.vsp-form p {
	margin-bottom: 1rem;
}

.vsp-form label {
	display: block;
	margin-bottom: 0.25rem;
	font-weight: 600;
}

.vsp-form input[type="text"],
.vsp-form input[type="email"],
.vsp-form input[type="password"],
.vsp-form textarea {
	width: 100%;
	padding: 8px;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
}
