.lcn-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.lcn-btn {
    padding: 10px 20px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.lcn-btn svg {
    fill: #fff;
    transition: all 0.3s;
}
.lcn-btn:hover {
    opacity: 0.9;
}