.lnModal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.lnModal-content {
    background: #fff;
    width: 90%;
    height: 90%;
    overflow: auto;
    position: relative;
    padding: 0;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    animation: lnModal-fadeIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.lnModal-header {
    background-color: rgb(0, 128, 255);
    color: white;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.lnModal-body {
    padding: 30px 40px;
    flex-grow: 1;
    overflow-y: auto;
}

@keyframes lnModal-fadeIn {
    from { transform: scale(0.96); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lnModal-close-btn {
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    transition: color 0.2s;
    line-height: 1;
}

.lnModal-close-btn:hover {
    color: #ffcccc;
}