/* SweetAlert2 커스텀 스타일 */
.custom-swal-popup {
    background: linear-gradient(328deg, #440D6D 50.5%, #7C1EC1 80.15%) !important;
    border-radius: 15px !important;
    border: 1px solid #70319F !important;
    padding: 25px !important;
	box-sizing:border-box;
}

.custom-swal-title {
    color: #fff !important;
    font-size: 20px !important;
    font-weight: bold !important;
}

.custom-swal-content {
    color: #e0e0e0 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.custom-swal-confirm {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
	box-sizing:border-box;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    margin: 5px !important;
}

.custom-swal-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4) !important;
}

.custom-swal-confirm.danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
}

.custom-swal-cancel {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
    color: #fff !important;
    font-size: 15px !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    margin: 5px !important;
}

.custom-swal-cancel:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* 아이콘 색상 */
/* 성공 - 초록색 */
.custom-swal-popup .swal2-icon.swal2-success {
    border-color: #4ade80 !important;
    color: #4ade80 !important;
}

/* 에러 - 빨간색 */
.custom-swal-popup .swal2-icon.swal2-error {
    border-color: #f87171 !important;
    color: #f87171 !important;
}

/* 경고 - 노란색 */
.custom-swal-popup .swal2-icon.swal2-warning {
    border-color: #fbbf24 !important;
    color: #fbbf24 !important;
}

/* 정보 - 파란색 */
.custom-swal-popup .swal2-icon.swal2-question {
    border-color: #a78bfa !important;
    color: #a78bfa !important;
}

/* 질문 - 보라색 */
.custom-swal-popup .swal2-icon.swal2-info {
    border-color: #60a5fa !important;
    color: #60a5fa !important;
}

.popup_counsel .swal2-validation-message {
  background: #fff5f5;
  color: #e53935;
  border-left: 4px solid #e53935;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
}
