.up-profile-card {
	max-width: 700px;
	margin: 0 auto;
	padding: 32px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

.up-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.up-avatar img {
	border-radius: 50%;
}

.up-user {
	flex: 1;
	line-height: 4px;
}

.up-user h2 {
	margin: 0;
}

.up-badge {
	display: inline-block;
	margin-top: 8px;
	padding: 5px 12px;
	border-radius: 20px;
	background: #eaf7ea;
	font-size: 13px;
}

.up-field {
	margin-bottom: 22px;
}

.up-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
}

.up-field input {
	width: 100%;
	padding: 16px;
	border: 1px solid #ddd;
	border-radius: 16px;
	font-size: inherit;
	font-family: inherit;
}

.up-field input[readonly],
.up-field input:disabled {
	background: #f5f5f5;
}





#up-message {

	margin-top: 16px;

	font-weight: 600;

}

.up-avatar {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.up-avatar-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.up-avatar-placeholder {
	width: 100%;
	height: 100%;
	background: #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	font-weight: 600;
	color: #6b7280;
}

.up-message {
	margin-top: 12px;
	font-size: 14px;
}





.up-actions {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 64px;
}


.up-button,
#up-save-profile {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
	padding: 16px 32px;
	border: 1px solid #eb00eb;
	border-radius: 16px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all .2s ease;
}

.up-button-primary {
	background: #eb00eb6a;
	color: #fff;
	border: none;
}

.up-button-primary:hover {
	background: #eb00eb6a;
}

.up-button-secondary {
	background: #fff;
	color: #374151;
	border: 1px solid #eb00eb;
}

.up-button-secondary:hover {
	background: #f9fafb;
	border-color: #eb00eb6a;
}

#up-back-home:disabled {
	background: #f8f9fa;
	color: #6c757d;
	border: 1px solid #ced4da;
	cursor: default;
	opacity: 1;   /* override browser fade */
}


#up-save-profile:disabled {
	background: #f8f9fa;
	color: #6c757d;
	border: 1px solid #ced4da;
	cursor: default;
	opacity: 1;   /* override browser fade */
}

.up-message {
	min-height: 20px;
}

.up-message.success {
	color: #16a34a7b;
}

.up-message.error {
	color: #dc2626;
}