.ls-btn {
    cursor: pointer;
    display: inline-block;
    padding: 8px 16px;
    background-color: #fff;
    color: #2b96d4;
    border: 1px solid #2b96d4;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: center;
}
.ls-btn.ls-fill {
    background-color: green;
    color: #fff;
    font-weight: bold;
    border: none;
}
.ls-btn.ls-fill-light {
    background-color: #02b801;
    color: #fff;
    font-weight: bold;
    border: none;
}
.ls-btn.ls-elevated {
    box-shadow: 0 -4px 0 rgba(0, 128, 0, 0.5) inset;
}
.ls-btn.ls-rounded {
    border-radius: 25px;
}
.ls-btn.ls-large {
    padding: 16px 16px;
}

@media screen and (max-width: 767px) {
    .ls-btn-container {
        display: flex;
        justify-content: space-between;
    }
}

@media screen and (max-width: 767px) {
    .ls-btn-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}