/* 프로필 모달 스타일 */

/* 프로필 이미지 영역 배경 */
.profile-img {
	background-color: rgb(246 246 246) !important;
	border-radius: 10px;
	padding: 20px;
	position: relative;
}

/* 폼 요소 간격 */
.gap10-c > * {
	margin-bottom: 10px;
}

.gap10-c > *:last-child {
	margin-bottom: 0;
}

/* 읽기 전용 필드 스타일 */
.edit-field.bg-light {
	background-color: #f8f9fa !important;
	border-color: #e9ecef !important;
	cursor: not-allowed;
}

/* 아바타 이미지 호버 효과 */
#profileAvatarPreview {
	transition: transform 0.2s;
}

#profileAvatarPreview:hover {
	transform: scale(1.05);
}

/* 삭제 버튼 스타일 */
#btnDeleteProfileAvatar {
	z-index: 10;
	border: 2px solid white;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

#btnDeleteProfileAvatar:hover {
	background-color: #dc3545 !important;
	border-color: white !important;
	transform: scale(1.1);
}

#profileActionBtns .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#profileActionBtns .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

#profileActionBtns i {
	font-size: 1.2rem;
}

/* 비밀번호 변경 섹션 구분선 */
#passwordSection {
	border-top: 2px solid #e9ecef !important;
}

#passwordSection h6 {
	color: #dc3545;
}

/* 프로필 저장 버튼 */
#profileSaveSection .btn-primary {
	font-weight: 600;
}

/* 비밀번호 변경 버튼 */
#passwordSection .btn-danger {
	font-weight: 600;
}
