.section__profile{
	position: relative;
}
.profile-container {
	max-width: 800px;
	margin: 40px auto;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 3px 8px rgba(0,0,0,0.1);
	overflow: hidden;
}
.profile-header {
	text-align: center;
	padding: 30px;
	border-bottom: 1px solid #eee;
}
.profile-header img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
}
.profile-header button {
	margin-top: 10px;
	background: #a064e8;
	color: #fff;
	border: none;
	padding: 8px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
}
.profile-header button:hover {
	background: #8147d8;
}

.profile-details {
	padding: 20px 40px;
}
.profile-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #eee;
	padding: 15px 0;
}
.profile-row:last-child {
	border-bottom: none;
}
.profile-label {
	font-weight: 600;
	color: #333;
}
.profile-value {
	flex: 1;
	text-align: right;
	color: #555;
}
.profile-status {
	color: green;
	font-weight: 600;
}
.btn-edit {
	color: #8147d8;
	text-decoration: none;
	font-weight: 600;
}
.btn-edit:hover {
	text-decoration: underline;
}
.badge-warning {
	background: #e74c3c;
	color: #fff;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 12px;
}
.modal {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,0.3);
	border-radius: 8px;
	max-width: 800px;
}
.modal-content {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	border: 2px solid #eee;
	box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.5);
	position: absolute;
	transform: translate(calc(50% + 30px), calc(100% + 30px));
}
@media only screen (max-width:541px){
	.profile-container{
		margin: 0 auto;
	}
	.profile-details{
		padding: 10px;
	}
}