a {
    color: var(--color-primary-400);
    transition: .3s;

    &:hover {
        color: var(--color-primary-500);
    }
}

.link {
    font-size: 1.2em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    gap: 5px;

    &.disabled {
        color: var(--color-grey-400);
        cursor: not-allowed;

        span {
            color: var(--color-grey-400);
            cursor: not-allowed;
        }
    }
}
