.codewpai-tabs-wrapper {
    display: flex;
    justify-content: center;

    & .codewpai-tab {
        display: block;
        cursor: pointer;
        border: none;
        background: transparent;
        text-decoration: none;
        color: var(--color_1);
        padding: 0.5rem 1rem 1rem;
        margin: 0 1rem;
        transition: box-shadow 0.2s ease-in-out;

        &:focus {
            color: var(--color_2);
            outline: 1px solid #787c82;
            box-shadow: none;
        }

        &.codewpai-tab--active {
            box-shadow: inset 0 -3px #3582c4;
            text-shadow: 0 0 1px #1d2327;
            /* font-weight: 600; */
        }
    }
}
