/* Popup Container */
.custom-popup-dialog {
    border: none;
    border-radius: 16px;
    padding: 24px;
    max-width: 520px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(47, 31, 106, 0.15);
    background: #ffffff;
}
/* Layout */
.custom-popup-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.popup-body{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/* Header (Icon + Title inline) */
.popup-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Icon */
.custom-icon-wrapper {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-icon-wrapper svg {
    width: 32px;
    height: 32px;
    color: #eb5757;
}

/* Title */
.popup-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #2F1F6A;
    margin: 0;
}

/* Description */
.popup-description {
    font-size: 16px;
    color: #6A6097;
    line-height: 24px;
    margin: 0;
}

/* Buttons */
.popup-btn-group {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.popup-btn-group .btn {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.2s ease;
}

/* Secondary Button */
.btn-secondary-outline {
    background: #fff;
    color: #8c88a0;
    border: 1px solid #e4e1f0;
}

.btn-secondary-outline:hover {
    background: #f8f6ff;
}

/* Primary Button */
.btn-purple {
    background: #866abe;
    color: #fff;
    border: none;
}

.btn-purple:hover {
    background: #7559a8;
}
