.sw-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.sw-dialog {
    background: #fff;
    border-radius: 6px;
    padding: 2rem;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.sw-dialog h2 {
    margin: 0 0 1rem;
    font-size: 1.2rem;
}

.sw-dialog p {
    margin: 0 0 1.5rem;
}

.sw-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}