.lm-tabs[data-position="bottom"] {
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
}

.lm-tabs .lm-tabs-content > div {
    padding: 15px 5px;
}

.lm-tabs .lm-tabs-headers {
    display: flex;
    align-items: center;
    width: 100%;
}

.lm-tabs[data-position="center"] .lm-tabs-headers {
    margin: 0 auto;
    justify-content: center;
}

.lm-tabs .lm-tabs-headers > ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.lm-tabs .lm-tabs-headers > ul > li {
    cursor: pointer;
    user-select: none;
    padding: 4px 24px;
    border: 1px solid #ccc;
    background-position: center;
    transition: background 0.8s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lm-tabs .lm-tabs-headers > ul > li.selected {
    background-color: #eee;
    color: #000;
}

.lm-tabs .lm-tabs-headers > ul > li[data-icon]:before {
    content: attr(data-icon);
    font-family: "Material Symbols Outlined", "Material Icons", "FontAwesome";
    font-size: 24px;
    width: 24px;
    height: 24px;
    text-align: center;
    color: var(--lm-icon-color, #777);
    margin-bottom: 5px;
}

.lm-tabs[data-round="true"] .lm-tabs-headers > ul > li:first-of-type {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.lm-tabs[data-round="true"] .lm-tabs-headers > ul > li:last-of-type {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.lm-tabs .lm-tabs-headers > ul > li:not(:first-child) {
    border-left: 1px solid transparent;
}

.lm-tabs .lm-tabs-headers > ul > li:hover {
    background: #eee radial-gradient(circle, transparent 1%, #eee 1%) center/15000%;
}

.lm-tabs .lm-tabs-headers > ul > li:active {
    background-color: #ddd;
    background-size: 100%;
    transition: background 0s;
}

.lm-tabs .lm-tabs-content > div {
    display: none;
}

.lm-tabs .lm-tabs-content > div.selected {
    display: block;
}

.lm-tabs-insert-button {
    margin-left: 5px;
    color: #555;
    cursor: pointer;
    font-family: "Material Symbols Outlined", "Material Icons", "FontAwesome";
    font-size: 24px;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
}

.lm-tabs div[data-visible="false"] {
    display: none;
}
