.jemputin-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99990;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, .55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, visibility .18s ease;
}

.jemputin-modal-overlay.jemputin-modal-open {
    opacity: 1;
    visibility: visible;
}

.jemputin-modal-box {
    width: 100%;
    max-width: 340px;
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .25);
    transform: scale(.9) translateY(10px);
    transition: transform .18s ease;
}

.jemputin-modal-open .jemputin-modal-box {
    transform: scale(1) translateY(0);
}

.jemputin-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

.jemputin-modal-icon-success { background: linear-gradient(135deg, #34d399, #059669); }
.jemputin-modal-icon-error   { background: linear-gradient(135deg, #f87171, #dc2626); }
.jemputin-modal-icon-warning { background: linear-gradient(135deg, #fbbf24, #d97706); }
.jemputin-modal-icon-info    { background: linear-gradient(135deg, #38bdf8, #0284c7); }

.jemputin-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
}

.jemputin-modal-msg {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.jemputin-modal-msg a {
    color: #f97316;
    font-weight: 600;
    text-decoration: none;
}

.jemputin-modal-btns {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.jemputin-modal-btns button {
    flex: 1;
    min-height: 44px;
    padding: 0 14px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.jemputin-modal-btn-primary {
    background: linear-gradient(135deg, #ffb020, #f97316);
    color: #fff;
}

.jemputin-modal-btn-danger {
    background: linear-gradient(135deg, #f87171, #dc2626);
    color: #fff;
}

.jemputin-modal-btn-ghost {
    background: #f1f5f9;
    color: #475569;
}