/* LI Lazy Template – Editor Placeholder */

.li-lazy-template__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 24px;
    background: #f9f9fb;
    border: 2px dashed #c2c2d1;
    border-radius: 6px;
    min-height: 120px;
    text-align: center;
}

.li-lazy-template__placeholder--empty {
    border-color: #e0a0a0;
    background: #fff8f8;
}

.li-lazy-template__name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.li-lazy-template__edit-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #6A4BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
}

.li-lazy-template__edit-btn:hover,
.li-lazy-template__edit-btn:focus {
    background: #4a2edf;
    color: #fff;
    outline: 2px solid #4a2edf;
    outline-offset: 2px;
    text-decoration: none;
}

