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

.lp-note-modal {
    background: #fff;
    width: 500px;
    max-width: 95%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.lp-note-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-note-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.lp-note-body {
    margin-bottom: 15px;
}

.lp-note-item {
    border: 1px solid #ddd;
    padding: 8px;
    margin-bottom: 8px;
    border-radius: 4px;
    background: #fafafa;
}