.custom-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.2s ease-out;
}

.custom-modal-box {
	background: white;
	border-radius: 14px;
	width: 280px;
	max-width: 90vw;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.custom-modal-message {
	padding: 24px 20px 20px;
	font-size: 17px;
	line-height: 1.4;
	text-align: center;
	color: #000;
	font-weight: 400;
}

.custom-modal-buttons {
	display: flex;
	border-top: 1px solid #e5e5e7;
}

.custom-modal-btn {
	flex: 1;
	padding: 16px;
	border: none;
	background: none;
	font-size: 17px;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.custom-modal-btn.cancel {
	color: #007AFF;
	border-right: 1px solid #e5e5e7;
}

.custom-modal-btn.confirm {
	color: #007AFF;
	font-weight: 600;
}

.custom-modal-btn.single {
	color: #007AFF;
	font-weight: 600;
}

.custom-modal-btn:hover {
	background-color: #f5f5f5;
}

.custom-modal-btn:active {
	background-color: #e5e5e7;
}

/* 기존 클래스들도 유지 (호환성) */
.custom-confirm-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.2s ease-out;
}

.custom-confirm-box {
	background: white;
	border-radius: 14px;
	width: 280px;
	max-width: 90vw;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.custom-confirm-message {
	padding: 24px 20px 20px;
	font-size: 17px;
	line-height: 1.4;
	text-align: center;
	color: #000;
	font-weight: 400;
}

.custom-confirm-buttons {
	display: flex;
	border-top: 1px solid #e5e5e7;
}

.custom-confirm-btn {
	flex: 1;
	padding: 16px;
	border: none;
	background: none;
	font-size: 17px;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.custom-confirm-btn.cancel {
	color: #007AFF;
	border-right: 1px solid #e5e5e7;
}

.custom-confirm-btn.confirm {
	color: #007AFF;
	font-weight: 600;
}

.custom-confirm-btn:hover {
	background-color: #f5f5f5;
}

.custom-confirm-btn:active {
	background-color: #e5e5e7;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: scale(1.1) translateY(20px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}