body {
	background: #fefefe;
	margin: 0;
	padding: 0;
}

.edit-container {
	max-width: 600px;
	margin: 0 auto;
	padding: 30px 20px;
}

.avatar-section {
	background: white;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	margin-bottom: 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.avatar-placeholder {
	width: 500px;
	height: 500px;
	border-radius: 12px;
	margin: 0 auto 15px;
	overflow: hidden;
	background: #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	color: #999;
}

.avatar-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.username-display {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
}

.user-stats {
	font-size: 13px;
	color: #64748B;
	margin-bottom: 5px;
}

.photo-upload-box {
	background: #fafafa;
	border: 2px dashed #ddd;
	border-radius: 12px;
	padding: 40px 20px;
	margin: 20px 0;
}

.upload-title {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 20px;
	text-align: center;
}

.upload-tabs {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.upload-tab {
	padding: 10px 20px;
	background: white;
	border: 1px solid #ddd;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s;
	position: relative;
}

.upload-tab:hover {
	background: #f0f0f0;
	border-color: #007edf;
}

.upload-tab input[type='file'] {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.upload-tab-delete {
	background: #fff5f5;
	color: #f44336;
	border-color: #f44336;
}

.upload-tab-delete:hover {
	background: #ffebee;
}

.upload-hint {
	font-size: 12px;
	color: #999;
	line-height: 1.6;
	text-align: center;
}

.selected-file-info {
	margin-top: 15px;
	padding: 10px;
	background: #e3f2fd;
	border-radius: 6px;
	font-size: 13px;
	color: #1976d2;
}

.form-section {
	background: white;
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 25px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #e0e0e0;
}

.form-group {
	margin-bottom: 25px;
}

.form-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 15px;
	font-family: inherit;
	transition: border-color 0.3s;
	background: white;
	box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: #64b5f7;
	box-shadow: 0 0 0 3px rgba(100, 181, 247, 0.1);
}

.form-textarea {
	resize: vertical;
	min-height: 100px;
}

.date-group {
	display: flex;
	gap: 10px;
}

.date-group select {
	flex: 1;
}

.radio-group {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.radio-option {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.radio-option input[type='radio'] {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.char-count {
	text-align: right;
	font-size: 12px;
	color: #999;
	margin-top: 5px;
}

.action-buttons {
	display: grid;
	gap: 15px;
	margin-top: 30px;
	padding: 0 100px 20px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.btn {
	flex: 1;
	padding: 14px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	text-align: center;
	display: block;
	height: auto;
}

.btn-cancel {
	background: white;
	color: #64748B;
	border: 1px solid #ddd;
}

.btn-cancel:hover {
	color: #495057;;
	border: 1px solid #dee2e6;
	background: #e9ecef;;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px #64748B;
}

.btn-save-profile {
	background: #2296f3;
	border: 1px solid #ddd;
	color: white;
} 

.btn-save-profile:hover {
	background: #64b5f7;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 126, 223, 0.3);
} 



.hidden {
	display: none;
}

@media (max-width: 768px) {
	.date-group {
		flex-direction: column;
	}

	.action-buttons {
		flex-direction: column;
	}
}
