/* Overlay */
.custom-alert-overlay {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
    animation: fadeIn 0.2s ease-out;
}

/* Alert Box */
.custom-alert-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 260px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

/* Icon */
.custom-alert-icon {
    font-size: 1.4rem;
}

/* Message */
.custom-alert-message {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
}

/* Fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* Overlay */
#universalConfirm.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Confirm Box */
#universalConfirm .custom-alert-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px 28px;
    width: 360px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Title */
#confirmTitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

/* Message */
#confirmMsg {
    font-size: 0.9rem;
    color: #475569;
    margin-top: 4px;
}

/* Icon */
.custom-alert-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Buttons */
.saas-btn-primary,
.saas-btn-secondary,
.saas-btn-danger {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin: 0 6px;
}

/* Primary (OK) */
.saas-btn-primary {
    background: #2563eb;
    color: #ffffff;
}
.saas-btn-primary:hover {
    background: #1d4ed8;
}

/* Secondary (Cancel) */
.saas-btn-secondary {
    background: #e2e8f0;
    color: #334155;
}
.saas-btn-secondary:hover {
    background: #cbd5e1;
}

/* Danger (Yes) */
.saas-btn-danger {
    background: #dc2626;
    color: #ffffff;
}
.saas-btn-danger:hover {
    background: #b91c1c;
}
