#otpl-tab-menu {
    display: flex;
    gap: 8px;
    padding: 10px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

#otpl-tab-menu a {
    position: relative;
    padding: 12px 22px;
    color: #64748b;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all .25s ease;
}

#otpl-tab-menu a:hover {
    color: #dca808;
    background: rgba(220,168,8,.08);
}

#otpl-tab-menu a.active {
    background: #dca808;
    color: #fff;
}

#otpl-tab-menu a.active::after {
    content: "";
    position: absolute;
    left: 20%;
    bottom: -6px;
    width: 60%;
    height: 3px;
    border-radius: 10px;
    background: #dca808;
}
.otpl-setting {
    background: #fff;padding:0 2rem 2rem 2rem;
}