@use '/src/components/config' as *;

.tab-section {
    position: absolute;
    top: -5.5rem;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;

    .tab-section-menu {
        transition: color 0.3s linear;
        padding: 0.5rem;
        position: relative;
        color: $color-black;
        cursor: pointer;
        display: flex;
        align-items: center;
        font-weight: 500;
        gap: 0.25rem;

        span {
            font-size: 1rem;
        }
        &:hover {
            color: $theme-color;
        }
        &.active {
            color: $theme-color;

            &::after {
                position: absolute;
                content: "";
                bottom: 0;
                left: 0;
                width: 100%;
                height: 0.12rem;
                background: $theme-color;
            }
        }

    }

}